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

test-114.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36925d310be5d29c1b6a0034c0ef25cff302f0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

class MyClass {

	delegate bool IsAnything (Char c);

	public static int Main () {
		IsAnything validDigit;
		validDigit = new IsAnything (Char.IsDigit);

		return 0;
	}
}