コード例 #1
0
 public bool Equals(ModuleAndIntValueKey other) => IntValue == other.IntValue && Module.Equals(other.Module);
コード例 #2
0
 public bool Equals(ModuleAndIntValueKey other) => IntValue == other.IntValue && ((Module == null && other.Module == null) || Module.Equals(other.Module));
コード例 #3
0
 public bool Equals(FieldRvaKey other) => Rva == other.Rva && Module.Equals(other.Module);