Skip to content

Instantly share code, notes, and snippets.

@IEvangelist
Last active May 6, 2020 20:30
Show Gist options
  • Save IEvangelist/840f2038ed3fed7163c6896d97d06e62 to your computer and use it in GitHub Desktop.
Save IEvangelist/840f2038ed3fed7163c6896d97d06e62 to your computer and use it in GitHub Desktop.
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