15
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int age = 23;
8
string name = "Lorem Ipsum";
9
double 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