using System;
public class Program
{
public static void Main()
var Breed = "Scotish";
var tom1 = new { Name = "Tom", Breed };
var tom2 = new { Name = "Tom", Breed };
Console.WriteLine(tom1.Breed);
Console.WriteLine(tom1.GetType()); //<>f__AnonymousType0`1[System.String]
Console.WriteLine(tom1.Equals(tom2)); //true
Console.WriteLine(tom1 == tom2); //false
}