Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 29 down vote accepted
Byte[] array = new Byte[64];

Array.Clear(array, 0, array.Length);
share|improve this answer
Thank you! Working fine! – leon22 Jul 1 '11 at 10:56

Array.Clear

share|improve this answer

Use the "clear" method on Array.

 Array.Clear(array , 0, array.Length);
share|improve this answer
for (int i = 0; i < array.Length; i++)
    array[i] = 0;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.