Howdy all hope everyone is having fun with there own projects! But i have come once again to be a pain in the ^**^.
I need to know an easy way of doing this -> as an example say:
I would like to some how use a MultiDarray in this way. or another way.
say i created something like this:
string[,] Blah = new string[,] { { "asda"", "now" }, { "tesr", "basdjh" } };
Now that's cool but i would like to add items to this array.
so that in the end i could do some like
How to add to this array once it's been defined or in the process of init?
for(...)
{
string filenamestr;
string pathnaestr;
filenamestr = blah.getvalue(i,1);
pathnaestr = blah.getvault(i,2);
}
So what i mean is there anyway to create a method or store say multile values at given locations within that record(array).