Is there any method to empty an Byte array in C sharp?!
Byte[] array = new Byte[64]; // contain all 0 // write some value into the array // need empty array with all 0's
Thank you for your help!
greets leon22
Byte[] array = new Byte[64]; Array.Clear(array, 0, array.Length);
Array.Clear
Use the "clear" method on Array.
Array.Clear(array , 0, array.Length);
for (int i = 0; i < array.Length; i++) array[i] = 0;
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
9066 times
active