vote up 0 vote down star

Hi, I've WebService written in Java that has method

@WebMethod    
public void createUser(Long id, String name)
{

}

Now I want to use this method in .NET client. I think I should be able to use this method with nullable long but I can't. Is there any annotation or maybe some other way to force .NET use nullable types?

I think that if in java I use Long (not long) so it's natural that in .NET I'll have method with nullable parameter

flag

73% accept rate

1 Answer

vote up 1 vote down

In C#, nullable types use the '?' markup, so the datatype would be long?, or Nullable<Long>. If you need to get the actual long out of them, the best way to do it is NullableLong.Value

Thanks to Gratz' comment! What he means is, in a nullable type, you want to do NullableLong.HasValue, which returns a bool saying whether or not the variable is null.

link|flag
You also might want to check .HasValue first – Gratzy Oct 2 at 21:33

Your Answer

Get an OpenID
or

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