Exemple #1
0
 // Converts an object to a string. This method exists to support
 // stringifying of objects that may be null.
 internal static string ToString(GenericDataObject obj)
 => obj is null ? "null" : obj.ToString();