함수명(long? id) 이렇게 쓰일때가 있다. long?의 의미는long은 Int64와 동일하며?의 의미는 nullable (널값을 허용한다는 의미) long is the same as Int64long data typeThe ? means it is nullableA nullable type can represent the normal range of values for its underlying value type, plus an additional null valueNullable TypesNullable example:int? num = null; if (num.HasValue == true) { System.Console.WriteLine("num = " + num.Value); } else ..