コード例 #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)
 {
     WriteTablePointer (row.Parent, TypeDefTable.RId);
     WriteTablePointer (row.PropertyList, PropertyTable.RId);
 }
コード例 #3
0
 public PropertyMapRow CreatePropertyMapRow(uint _parent, uint _propertyList)
 {
     PropertyMapRow row = new PropertyMapRow ();
     row.Parent = _parent;
     row.PropertyList = _propertyList;
     return row;
 }
コード例 #4
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     row.Parent       = ReadByIndexSize(GetIndexSize(TypeDefTable.RId));
     row.PropertyList = ReadByIndexSize(GetIndexSize(PropertyTable.RId));
 }
コード例 #5
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     WriteTablePointer(row.Parent, TypeDefTable.RId);
     WriteTablePointer(row.PropertyList, PropertyTable.RId);
 }
コード例 #6
0
 public override void VisitPropertyMapRow(PropertyMapRow row)
 {
     row.Parent = ReadByIndexSize (GetIndexSize (TypeDefTable.RId));
     row.PropertyList = ReadByIndexSize (GetIndexSize (PropertyTable.RId));
 }