R
raulavi
vs 2005 c#
How do I get the number of filled item from an array?
string[] myArr = {"","","",""};
myArr[0] = "one";
myArr.Length = 4;
How do I get the number of filled item from an array in this case 1.
or is any other way to define arrays as unlimited ?
Thanks
How do I get the number of filled item from an array?
string[] myArr = {"","","",""};
myArr[0] = "one";
myArr.Length = 4;
How do I get the number of filled item from an array in this case 1.
or is any other way to define arrays as unlimited ?
Thanks