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