Пример #1
0
        public PropertyMapRow CreatePropertyMapRow(uint _parent, uint _propertyList)
        {
            PropertyMapRow row = new PropertyMapRow();

            row.Parent       = _parent;
            row.PropertyList = _propertyList;
            return(row);
        }
Пример #2
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     row.Parent       = ReadByIndexSize(GetIndexSize(TypeDefTable.RId));
     row.PropertyList = ReadByIndexSize(GetIndexSize(PropertyTable.RId));
 }
Пример #3
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     WriteTablePointer(row.Parent, TypeDefTable.RId);
     WriteTablePointer(row.PropertyList, PropertyTable.RId);
 }