12 lines
229 B
C#
12 lines
229 B
C#
using System;
|
|
|
|
class LP
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
|
|
public void PrintFullName()
|
|
{
|
|
Console.WriteLine($"Name: {FirstName}, LastName: {LastName}");
|
|
}
|
|
} |