static void Main(string[] args)
        {
            Account a = new Account();

            a.Add("My name is John");
            a.Add(10);

            Console.WriteLine(a.Get <int>(typeof(int)));
            Console.WriteLine(a.Get <int>(typeof(string)));
            Console.ReadLine();
        }