C# c#:匿名型 2016年2月25日 tomu コメントする 覚書 var a = new { X = 9, Y = 10 }; Console.WriteLine(“(匿名型): X={0}, Y={1}”, a.X, a.Y); // 出力:(匿名型): X=9, Y=10