I would like to prevent further processing on an object if it is null.
In the following code I check if the object is null by either:
if (!data.Equal
I did more simple (positive way) and it seems to work well.
Since any kind of "object" is at least an object
if (MyObj is Object) { //Do something .... for example: if (MyObj is Button) MyObj.Enabled = true; }