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

ReadFString() 공개 정적인 메소드

Read a Fixed-Length string from the stream
public static ReadFString ( this binaryReader, Int32 stringLength ) : String
binaryReader this
stringLength Int32 Size of the String
리턴 String
        public static String ReadFString(this BinaryReader binaryReader, Int32 stringLength)
        {
            return DDRIT.ReadFString(binaryReader, stringLength);
        }