15 lines
200 B
C#
15 lines
200 B
C#
|
using System;
|
||
|
public abstract class MyTestAbstract
|
||
|
{
|
||
|
protected abstract string GetName();
|
||
|
|
||
|
public MyTestAbstract()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void PrintName()
|
||
|
{
|
||
|
Console.WriteLine("Name=" + GetName());
|
||
|
}
|
||
|
}
|