AsmResolver.OutputStreamExtensions.WriteZeroes C# (CSharp) Метод

WriteZeroes() публичный статический Метод

Writes a specified amount of zero bytes to the stream.
public static WriteZeroes ( this writer, int count ) : void
writer this The writer to use.
count int The amount of zeroes to write.
Результат void
        public static void WriteZeroes(this IBinaryStreamWriter writer, int count)
        {
            writer.WriteBytes(new byte[count]);
        }