Is there any method to empty an Byte array in C#?
Byte[] array = new Byte[64]; // contain all 0
// write some value into the array
// need empty array with all 0's
Byte[] array = new Byte[64];
Array.Clear(array, 0, array.Length);
Release build though, right? Eg: SecureZeroMemory vs ZeroMemory in Win32.