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

gtest-360.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18eedc43d394ac7717537b94232a503d35c6b1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class C
{
	internal static int Foo<T> (T name, params object [] args)
	{
		return 2;
	}
	
	internal static int Foo (string name, params object [] args)
	{
		return 0;
	}
	
	internal static int InvokeMethod (string name, params object [] args)
	{
		return Foo (name, args);
	}
	
	public static int Main ()
	{
		return InvokeMethod ("abc");
	}

}