T
Tony Johansson
Hi!
I'm 99% sure that these three statement do the same thing but I just
want to get it confirmed that's why I ask ?
Decimal[] decimal1 = new decimal[5];
Array decimal2 = Array.CreateInstance(typeof(Decimal),5);
Array decimal3 = Array.CreateInstance(Type.GetType("Decimal"),5);
//Tony
I'm 99% sure that these three statement do the same thing but I just
want to get it confirmed that's why I ask ?
Decimal[] decimal1 = new decimal[5];
Array decimal2 = Array.CreateInstance(typeof(Decimal),5);
Array decimal3 = Array.CreateInstance(Type.GetType("Decimal"),5);
//Tony