コード例 #1
0
        public PropertyPtrRow CreatePropertyPtrRow(uint _property)
        {
            PropertyPtrRow row = new PropertyPtrRow();

            row.Property = _property;
            return(row);
        }
コード例 #2
0
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     row.Property = ReadByIndexSize(GetIndexSize(PropertyTable.RId));
 }
コード例 #3
0
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     WriteTablePointer(row.Property, PropertyTable.RId);
 }
コード例 #4
0
ファイル: MetadataRowWriter.cs プロジェクト: nobled/mono
		public override void VisitPropertyPtrRow (PropertyPtrRow row)
		{
			WriteTablePointer (row.Property, PropertyTable.RId);
		}
コード例 #5
0
ファイル: MetadataRowWriter.cs プロジェクト: nobled/mono
		public PropertyPtrRow CreatePropertyPtrRow (uint _property)
		{
			PropertyPtrRow row = new PropertyPtrRow ();
			row.Property = _property;
			return row;
		}
コード例 #6
0
 public override void VisitPropertyPtrRow(PropertyPtrRow row)
 {
     row.Property = ReadByIndexSize (GetIndexSize (PropertyTable.RId));
 }