Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0149.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b65e055a5f8b5e38cfb831ef24a0b9f621b2a511 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0149.cs: Method 'MainClass.Delegate()' does not match delegate 'void TestDelegate()'
// Line: 8

delegate void TestDelegate();

public class MainClass {
        public static void Main() {
                TestDelegate delegateInstance = new TestDelegate (0);
       }
}