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

26 lines
344 B
C#

using System;
public class Blah
{
public delegate int MyDelegate (int i, int j = 7);
public int Foo (int i, int j)
{
return i+j;
}
public static int Main ()
{
Blah i = new Blah ();
MyDelegate del = new MyDelegate (i.Foo);
int number = del (2);
Console.WriteLine (number);
if (number != 9)
return 1;
return 0;
}
}