Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

Idiom #339 Clear a byte array

Set all the elements of the byte array a to zero

Array.Fill(a, (byte)0);
clear(a[:])

a is an array (but slices are more common)

New implementation...
< >
programming-idioms.org