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));
        }