Hello,
How would you write a call to the .ToString() method on an object of type object that can be null. I currently do the following, but it's pretty long :
myobject == null ? null : myobject.ToString()
|
1
|
|||
|
|
|
|
One way to make the behaviour more encapsulated is to put it in an extension method:
Then you can call
|
||||||||
|
|
|
If you use that specific type frequently in this way you could write a method |
||
|