Free cookie consent management tool by TermsFeed Policy Generator

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


Ignore:
Timestamp:
07/25/14 13:28:02 (10 years ago)
Author:
abeham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/BestPractices

    v2 v3  
    99 * check for !InvokeRequired in methods that manipulate GUI elements in controls
    1010 * instantiate all objects of classes implementing IDisposable with the using(...) { ... } statement to make sure the object is disposed correctly
     11 * Types and the namespaces they are defined in should not be named similarly, e.g. HeuristicLab.Encodings.MyEncoding should not contain the equally named class MyEncoding.
    1112
    1213== Developing Operators ==