Partap Tanwar
Can you store multiple data types in System.Array?
By Partap Tanwar in ASP.NET on Sep 16 2009
  • shashikesh
    Oct, 2009 29

    Array list can store multiple data type value . Ex ,

     System.Collections.ArrayList af = new System.Collections.ArrayList();
                af.Add("Test");
                af.Add(1);
                af.Add(1.3);
                Console.WriteLine(Convert.ToDecimal(af[2]));
                  Console.ReadLine();

    • 0
  • karthikeyan m
    Sep, 2009 18

    No

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS