Surajit Chakraborty
How to declare an integer variable which can except null? a) int? x b) int x c) int x IS NULL d) int ISNULL(X)
By Surajit Chakraborty in C# on May 27 2013
  • kajal rane
    Apr, 2019 10

    int? x;

    • 0
  • Hamid Khan
    Jan, 2015 7

    Hi you can declare like that, this is call nullable type of variable int? i = 50; double? d1 =4.4; bool? flag = null; char? letter = 'h'; int?[] arr = new int?[20]; string is not a nullable type

    • 0
  • Surajit Chakraborty
    May, 2013 27

    a,b

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS