Last active
May 6, 2020 20:30
-
-
Save IEvangelist/840f2038ed3fed7163c6896d97d06e62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void Write(object o) | |
{ | |
if (o ! is string) | |
{ | |
Console.WriteLine("WTF?"); | |
} | |
else | |
{ | |
Console.WriteLine("OMG!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment