2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs1533.cs
blob188c02dd3337399481d05e27bd44e931a396f555
1 // cs1533 : Invoke cannot be called directly on a delegate
2 // Line : 11
4 public class TestClass
6 delegate void OneDelegate (int i);
8 static void Main()
10 OneDelegate d = new OneDelegate (TestMethod);
11 d.Invoke (1);
13 public static void TestMethod (int i)