16
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
var anony = new {
8
Name = "Lorem Ipsum",
9
Age = 23,
10
Money = 123.45
11
};
12
13
Console.WriteLine($"Type: {anony.GetType()}");
14
Console.WriteLine($"Name: {anony.Name} Age: {anony.Age} Money: {anony.Money}");
15
}
16
}
Cached Result