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

test-415-lib.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bec8b987ff2170726e34be6402952f79e980bc72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -t:library

using System;
public abstract class MyTestAbstract
{
	protected abstract string GetName();
	
	public MyTestAbstract()
	{
	}

	public void PrintName()
	{
		Console.WriteLine("Name=" + GetName());
	}
}