void IMetadata.GetAssemblyRefProcessor(int rid, out AssemblyRefProcessorRow row)
 {
     _tables.AssemblyRefProcessorTable.Get(rid, out row);
 }
		public void GetAssemblyRefProcessor(int rid, out AssemblyRefProcessorRow row)
		{
			_accessor.Position = GetTableRowOffset(MetadataTableType.AssemblyRefProcessor, rid);
			row.Processor = (uint)_accessor.ReadInt32();
			row.AssemblyRef = ReadValue(_tableRowIndexSize4[MetadataTableType.AssemblyRef]);
		}