linux-packaging-mono/mcs/tests/gtest-exmethod-47.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

23 lines
225 B
C#

delegate void D ();
public class C
{
static void Main ()
{
S s = new S ();
D d = s.Foo;
}
}
public class S
{
public void Foo (int i)
{
}
}
public static class Extension
{
public static void Foo (this S s) { }
}