11
votes
23answers
1k views
Should I agree to ban the “using” directive from my c# projects?
My colleague insists on explicitly specifying the namespace in code as opposed to using the using directive. In ot …
1
vote
Passing null arguments to C# methods
From C# 2.0:
private void Example(int? arg1, int? arg2)
{
if(arg1 == null)
{
//do something
}
if(arg2 == null)
{
//do something else
}
}
…
