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

I am currently doing it in a for loop, and I know in C there is the ZeroMemory API, however that doesn't seem to be available in C#. Nor does the somewhat equivalent Array.fill from Java exist either. I am just wondering if there is an easier/faster way?

share|improve this question
You don't need to clear it during initialization. Your post doesn't indicate whether this is during initialization or after you've put data into the array. – John Fisher Sep 10 '09 at 21:12
After i've put data into the array. – esac Sep 10 '09 at 21:16
1  
Dustin: I think it is rather rude to just tell me a google search would have worked. Obviously, my mind is different than yours, and a look through "zero out memory in c#" did not yield me Array.Clear() – esac Sep 10 '09 at 21:31

4 Answers

up vote 24 down vote accepted

Try Array.Clear():

Sets a range of elements in the Array to zero, to false, or to null (Nothing in Visual Basic), depending on the element type.

share|improve this answer
Man, don't know how I missed this, even looked through all of the members of the Array class. – esac Sep 10 '09 at 21:16
  • C++: memset(array,0,sizeof(array))

  • C#: Array.Clear (Array array,int index, int length)

  • Java: Arrays.fill(array, val)

share|improve this answer
Array.Clear(integerArray, 0, integerArray.Length);
share|improve this answer

Several people have posted answers, then deleted them, saying that in any language a for loop will be equally performant as a memset or FillMemory or whatever.

For example, a compiler might chunk it into 64-bit aligned pieces to take advantage of a 64bit zero assignment instruction, if available. It will take alignment and stuff into consideration. Memset's implementation is certainly not trivial.

one memset.asm. Also see memset-is-faster-than-simple-loop.html.

Never underestimate the infinite deviousness of compiler and standard library writers.

share|improve this answer
I did a test with my for loop vs Array.Clear(). Array.Clear() 2 million times in a loop for a 4K array took 620 ms. The for loop took 13030 ms. – esac Sep 11 '09 at 5:52

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.