Skip to content

Instantly share code, notes, and snippets.

@gulbanana
Created August 10, 2016 02:34
Show Gist options
  • Save gulbanana/7f28d9301538edcde7631617720c3a1c to your computer and use it in GitHub Desktop.
Save gulbanana/7f28d9301538edcde7631617720c3a1c to your computer and use it in GitHub Desktop.
using System;
class A
{
public string ToUpper() => "A";
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("s".ToUpper()); // prints "S"
What("s");
What(new A());
}
static void What(dynamic x)
{
Console.WriteLine(x.ToUpper());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment