Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 4 and Version 5 of Documentation/DevelopmentCenter/BestPractices


Ignore:
Timestamp:
12/07/14 18:30:41 (10 years ago)
Author:
abeham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/BestPractices

    v4 v5  
    1515 * When defining !ValueParameters inside an operator also include a public property that allows get and set access to the parameter's `Value` property.
    1616 * Use interfaces instead of concrete classes (e.g. when implementing parameter properties expose an `IValueParameter<T>` instead of a `ValueParameter<T>`)
     17 * Use ValueLookupParameter<T> for parameters that may also be defined in another higher level context such as problem or algorithm