linux-packaging-mono/mcs/tests/gtest-optional-05.cs

26 lines
344 B
C#
Raw Normal View History

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;
}
}