D
DazedAndConfused
Is there a quick way to fill an array with zeros or make all elements
empty/nothing?
empty/nothing?
DazedAndConfused said:Thank you. I get sooo confused with VS Help. ReDim is working great. Help
says "ReDim creates another new array" and I am afraid I am creating
multiple arrays when I only need 1. Just trying not to write crappy code!
DazedAndConfused said:Thank you. I get sooo confused with VS Help. ReDim is working great. Help
says "ReDim creates another new array" and I am afraid I am creating
multiple arrays when I only need 1.
Rick Mogstad said:array.Clear(MyArray,0,MyArray.Length)
Rick Mogstad said:Hmm. Probably, you would have to try it out. I dont use
multi-dimensional arrays much, so I havent tried it.