c# - Difficulty in understanding class Property declaration -
this question has answer here:
- what bool? return type mean? 3 answers
- a curious c# syntax question mark 3 answers
i going through class library in 1 of our projects.
i came across statements public int? variablename
what mean..i going create classes new application refering current
application .
so ,i know , in scenarios can use , not
possible avoid it
int? means "nullable". being nullable allows have null values in int.
check out link if need understand bit more,
http://msdn.microsoft.com/en-us/library/2cf62fcy%28vs.80%29.aspx
Comments
Post a Comment