public PropertyMapRow CreatePropertyMapRow(uint _parent, uint _propertyList)
        {
            PropertyMapRow row = new PropertyMapRow();

            row.Parent       = _parent;
            row.PropertyList = _propertyList;
            return(row);
        }
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     WriteTablePointer (row.Parent, TypeDefTable.RId);
     WriteTablePointer (row.PropertyList, PropertyTable.RId);
 }
 public PropertyMapRow CreatePropertyMapRow(uint _parent, uint _propertyList)
 {
     PropertyMapRow row = new PropertyMapRow ();
     row.Parent = _parent;
     row.PropertyList = _propertyList;
     return row;
 }
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     row.Parent       = ReadByIndexSize(GetIndexSize(TypeDefTable.RId));
     row.PropertyList = ReadByIndexSize(GetIndexSize(PropertyTable.RId));
 }
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     WriteTablePointer(row.Parent, TypeDefTable.RId);
     WriteTablePointer(row.PropertyList, PropertyTable.RId);
 }
Example #6
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     row.Parent = ReadByIndexSize (GetIndexSize (TypeDefTable.RId));
     row.PropertyList = ReadByIndexSize (GetIndexSize (PropertyTable.RId));
 }