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