Select from following answers:- Nullable(int) i = null;
- Nullable<int> i = null;

- int i = null;
- int<Nullable> i = null;
- All Above
This is the proper way to declare and assign a nullable integer. Even in C#, you could also use the int? i = null;
Show Correct Answer
Source: Exam-70 536 MCTS Book | Asked In: Many Interviews |
Alert Moderator