can toString fail? code example
Example 1: How to do ToString for a possibly null object?
string s = (myObjc ?? "").ToString()
Example 2: How to do ToString for a possibly null object?
string s = (myObjc ?? (Object)"").ToString()
string s = ((Object)myObjc ?? "").ToString()