Tagged Questions
6
votes
2answers
538 views
Pros/cons of different methods for testing preconditions?
Off the top of my head, I can think of 4 ways to check for null arguments:
Debug.Assert(context != null);
Contract.Assert(context != null);
Contract.Requires(context != null);
if (context == null) ...
4
votes
10answers
395 views
how do i explain that if (xyz == null) checks are not “protective”
i have a few developers who constantly put If null checks
For example:
Run(Order order)
{
if (order == null) return;
}
in their code as they think they are protecting their class if someone ...
2
votes
1answer
61 views
Automatic conversion of wrapper in C#
I've build wrapper-class intended to prevent reference types of being null, as a pre-condition code contract.
public sealed class NotNullable<T>
where T : class
{
private T t;
...
1
vote
2answers
57 views
Code Contracts 1.4.40602.0 - Contract.ForAll doesn't seem to be working?
Warning 1 CodeContracts: requires unproven: Contract.ForAll(coll, item => item != null) C:\MyApp\MyObj.cs 38 9 TSI Framework
public MyObj()
: this(new ...