AsmResolver.BinaryStreamReaderExtensions.ReadAsciiString C# (CSharp) Метод

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

Reads a zero-terminated ASCII string from the stream.
public static ReadAsciiString ( this reader ) : string
reader this The reader to use for reading the data.
Результат string
        public static string ReadAsciiString(this IBinaryStreamReader reader)
        {
            return Encoding.ASCII.GetString(reader.ReadBytesUntil(0));
        }