コード例 #1
0
		public void GetCustomAttribute(int rid, out CustomAttributeRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.CustomAttribute, rid);
			row.Parent = ReadValue(_codedTokenDataSize4[2]);
			row.Type = ReadValue(_codedTokenDataSize4[10]);
			row.Value = ReadValue(_blobHeapOffsetSize4);
		}
コード例 #2
0
 void IMetadata.GetCustomAttribute(int rid, out CustomAttributeRow row)
 {
     _tables.CustomAttributeTable.Get(rid, out row);
 }