I came across this method, not sure what does ? do and why it is there.
thanks
Bob
public int? SubmitApportionmentValues( string program, int Year, int fiscalYear,
Dictionary
public int? SubmitApportionmentValues( string program, int Year, int fiscalYear,
Dictionary
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manikavelu VelayuthamPosted Jan 5, 2011, 12:19 AM
If you are not defining the integer variable with question mark, it wont accept null values. it will throw error.
http://msdn.microsoft.com/en-us/library/1t3y8s4s(v=vs.80).aspx
Refer the above link it will help you to understand the nullable types