Changes between Version 2 and Version 3 of Documentation/DevelopmentCenter/BestPractices
- Timestamp:
- 07/25/14 13:28:02 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/BestPractices
v2 v3 9 9 * check for !InvokeRequired in methods that manipulate GUI elements in controls 10 10 * 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. 11 12 12 13 == Developing Operators ==