Changes between Version 18 and Version 19 of CodeBestPractices


Ignore:
Timestamp:
2012-12-01 10:35:30 (11 years ago)
Author:
jeroens
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeBestPractices

    v18 v19  
    66   * [#try_/_cath Try / Catch and Assertions] 
    77   * Creation and disposal of objects and data 
    8  * Cross-platform compatibility 
    9    * Mono 
     8 * [#Compatibility Cross-platform compatibility] 
     9   * [#Mono Mono] 
    1010   * Target processor 
    1111 * User-interface design guidelines 
     
    1717---- 
    1818==Robustness== 
     19 
    1920===Try / Catch== 
    2021 
     22 
     23---- 
     24 
    2125==Compatibility== 
     26 
    2227===Mono=== 
     28 
    2329.NET is in theory system-independent, and .NET applications can be deployed under Unix, Linux, MacOS, etc using runtime environments such as [http://www.mono-project.com/Main_Page Mono]. However, not all .NET features work under Mono, most notably the Microsoft.!VisualBasic assembly. This can prove problematic since every Visual Basic project by default receives a reference to this assembly. 
    2430 
     
    2834 
    2935===Target processor=== 
     36 
    3037The EwE source code now fully utilizes 64-bit capabilities. In order to make sure that Windows finds the correct 32 or 64 bit Access drivers make sure you always compile your EwE6 main project against x86 or x64, never against AnyCPU in'' Menu > Build > Configuration Manager''. 
    3138