public AssemblyRefProcessorRow CreateAssemblyRefProcessorRow(uint _processor, uint _assemblyRef) { AssemblyRefProcessorRow row = new AssemblyRefProcessorRow(); row.Processor = _processor; row.AssemblyRef = _assemblyRef; return(row); }
public AssemblyRefProcessorRow CreateAssemblyRefProcessorRow(uint _processor, uint _assemblyRef) { AssemblyRefProcessorRow row = new AssemblyRefProcessorRow (); row.Processor = _processor; row.AssemblyRef = _assemblyRef; return row; }
public override void VisitAssemblyRefProcessorRow(AssemblyRefProcessorRow row) { m_binaryWriter.Write (row.Processor); WriteTablePointer (row.AssemblyRef, AssemblyRefTable.RId); }
public override void VisitAssemblyRefProcessorRow(AssemblyRefProcessorRow row) { row.Processor = m_binaryReader.ReadUInt32(); row.AssemblyRef = ReadByIndexSize(GetIndexSize(AssemblyRefTable.RId)); }
public override void VisitAssemblyRefProcessorRow(AssemblyRefProcessorRow row) { m_binaryWriter.Write(row.Processor); WriteTablePointer(row.AssemblyRef, AssemblyRefTable.RId); }
public override void VisitAssemblyRefProcessorRow(AssemblyRefProcessorRow row) { row.Processor = m_binaryReader.ReadUInt32 (); row.AssemblyRef = ReadByIndexSize (GetIndexSize (AssemblyRefTable.RId)); }