public static void Main()
object obj = new Person {
if(obj is Person { Address: {City: "Chennai" } })
Console.WriteLine("Chennai");
if(obj is Person { Address.City: "Chennai" })
Console.WriteLine("Chennai");
public string City {get; set;}
public string FirstName { get; set; }
public string LastName { get; set; }
public Address Address { get; set; }