public record struct Person(string FirstName, string LastName);
public static void Main()
Person p1 = new Person("Vijay", "Kumar");
Person p2 = new Person("Vijay", "Kumar");
Console.WriteLine(p1 == p2);
Person p3 = p1 with { LastName = "Mahesh" };
Person p4 = p1 with { FirstName = "Siva" };
var (firstName, lastName) = p1;
Console.WriteLine(firstName + ", " + lastName);