Duplicate Question
http://stackoverflow.com/questions/271588/passing-null-arguments-to-c-methods/271600
Can I do this in c# for .Net 2.0?
public void myMethod(string astring, int? anint)
{
//some code in which I may have an int to work with
//or I may not...
}
If not, is there something similar I can do?