Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 1 and Version 2 of Documentation/DevelopmentCenter/BestPractices


Ignore:
Timestamp:
01/10/12 13:18:09 (12 years ago)
Author:
abeham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/BestPractices

    v1 v2  
    1212== Developing Operators ==
    1313 * When defining !ValueParameters inside an operator also include a public property that allows get and set access to the parameter's `Value` property.
     14 * Use interfaces instead of concrete classes (e.g. when implementing parameter properties expose an `IValueParameter<T>` instead of a `ValueParameter<T>`)