ME3Explorer.UnrealHelper.UPropertyReader.readProperties C# (CSharp) 메소드

readProperties() 공개 메소드

public readProperties ( byte buff, string cls, string names ) : List
buff byte
cls string
names string
리턴 List
        public List<Property> readProperties(byte[] buff, string cls, string[] names)
        {
            tempProps = new List<Property>();
            memory = buff;
            memsize = buff.Length;
            Names = names;
            tempClass = cls;
            Guess(4, true);
            if(tempProps.Count == 0)
                Guess(8, true);
            return tempProps;
        }

Same methods

UPropertyReader::readProperties ( byte buff, string cls, string names, int start ) : List

Usage Example

예제 #1
0
        public void Deserialize()
        {
            props = UPR.readProperties(memory, "Level", pcc.names, 4);
            int offset = props[props.Count - 1].offset + props[props.Count - 1].raw.Length + 4;

            ReadObjects(offset);
        }
All Usage Examples Of ME3Explorer.UnrealHelper.UPropertyReader::readProperties