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? 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? please guide me Thanks in advance.