I declare a Byte-Array like this:
Byte[] b = new Byte[10];
and assign some values:
for (int i=0; i<b.Length; i++)
{
b[i] = 1;
}
Now I want to zero the array again and call:
b.Initialize();
which doesn't work. The array remains unchanged. Isn't b a value-type array?