System._Proxy.ReadPString C# (CSharp) 메소드

ReadPString() 공개 정적인 메소드

Read a Length-prefixed string from the stream
public static ReadPString ( this binaryReader, StringSizeEnum byteLength = StringSizeEnum.Int32 ) : String
binaryReader this
byteLength StringSizeEnum Size of the Length representation
리턴 String
        public static String ReadPString(this BinaryReader binaryReader, StringSizeEnum byteLength = StringSizeEnum.Int32)
        {
            return DDRIT.ReadPString(binaryReader, byteLength);
        }