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

CS0534-3-lib.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6783645d6e1db4060560ade49f9b2e39dbe3437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
public abstract class MyTestAbstract
{
	protected abstract string GetName();
	
	public MyTestAbstract()
	{
	}

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