Does too much usage of code contracts slows down the compilation process. Secondly code contracts are part of debug mode only what if i set code contracts and always compile the code in release mode, then will code contract work? i suppose it wont which means developer will be forced to work in debug mode and when you are creating a setup then make it in release mode. Am i right?
|
|
Assuming Code Contracts from MS Devlab,
|
|||
|
Compilation is slowed down a bit because of the way that CodeContracts work. There is an IL re-writer that injects code into your methods based on the contracts that you specify. This happens after the C# compiler has come along and generated the IL for your assembly. The runtime performance difference is quite small and will not affect your code in a noticeable way. Unless you are developing some real-time stock trading system, I seriously wouldn't even worry about it. As far as disabling Code Contracts in Production, I would far rather have the added protection of Code Contracts that some possibly obscure error. An error in the code contract will tell you exactly where and why the Contract was violated as opposed to having to dig down in some deep call-stack just because some bad data was passed in 5 levels up the call-stack tree. If you are using or are planning to use IMHO, the use of EDIT: One thing I forgot to add is that the IL Rewriter is completely independent of the C# compiler and there are no dependencies between the two. |
||||
|
|