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

12 lines
229 B
C#
Raw Normal View History

2024-10-05 09:59:53 +03:00
using System;
class LP
{
public string FirstName { get; set; }
public string LastName { get; set; }
public void PrintFullName()
{
Console.WriteLine($"Name: {FirstName}, LastName: {LastName}");
}
}