Initialize a Byte Array in PowerShell
Sometimes you’ll need to initialize a new buffer as an array of bytes. For example, if you want to generate random data using the NextBytes() method on the System.Random class, you need to pass in a byte array buffer for the method to write to. Creating a byte array in …