BasicKnowledgeCSharp/LessonsAndTasks/Lesson 71 - НАСЛЕДОВАНИЕ/Teacher.cs

6 lines
110 B
C#
Raw Normal View History

2024-10-05 09:59:53 +03:00
using System;
class Teacher : Empoloyee
{
public void Teach() => Console.WriteLine("I'am teaching");
}