Changes between Version 1 and Version 2 of Documentation/DevelopmentCenter/BestPractices
- Timestamp:
- 01/10/12 13:18:09 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/BestPractices
v1 v2 12 12 == Developing Operators == 13 13 * 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>`)