vote up 0 vote down star

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?

flag
I did a search and the duplicate didn't come up or that would have answered this. Thanks all. – One Monkey Mar 12 at 12:25

closed as exact duplicate by David Basarab, Community, George Stocker, TheTXI, Filip Ekberg Mar 12 at 13:03

4 Answers

vote up 2 vote down check

Yes, assuming you added the chevrons deliberately and you really meant:

public void myMethod(string astring, int? anint)

anint will now have a HasValue property.

link|flag
vote up 1 vote down

Yes, you can. The code above should work. See also:

http://stackoverflow.com/questions/271588/passing-null-arguments-to-c-methods/271600

which is a duplicate question.

link|flag
vote up 3 vote down

In C# 2.0 you can do;

public void myMethod(string astring, int? anint)
{
   //some code in which I may have an int to work with
   //or I may not...
}

And call the method like

 myMethod("Hello", 3);
 myMethod("Hello", null);
link|flag
vote up 8 vote down

Depends on what you want to achieve. If you want to be able to drop the anint parameter, you have to create an overload:

public void myMethod(string astring, int anint)
{
}

public void myMethod(string astring)
{
    myMethod(astring, 0); // or some other default value for anint
}

You can now do:

myMethod("boo"); // equivalent to myMethod("boo", 0);
myMethod("boo", 12);

If you want to pass a nullable int, well, see the other answers. ;)

link|flag
+1 good suggestion to use polymorphism – Ian Quigley Mar 12 at 12:21
That's not polymorphism – Garry Shutler Mar 12 at 12:23
@Garry, yep your right it isn't. – Ian Quigley Mar 12 at 13:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.