I need to convert the nullable int to string
int? a = null; string str = a.toString(); How can I perform this action without an exception? I need to get the string as "Null". please guide me Thanks in advance.
I need to convert the nullable int to string
int? a = null; string str = a.toString(); How can I perform this action without an exception? I need to get the string as "Null". please guide me Thanks in advance.