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

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

Writes an ASCII string to the stream.
public static WriteAsciiString ( this writer, string value ) : void
writer this The writer to use.
value string The string to write.
Результат void
        public static void WriteAsciiString(this IBinaryStreamWriter writer, string value)
        {
            writer.WriteBytes(Encoding.ASCII.GetBytes(value));
        }