Ejemplo n.º 1
0
 public bool Equals(CachedModuleExport other)
 {
     if (other is null)
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(ProcessHandle.Equals(other.ProcessHandle) &&
            ModuleHandle.Equals(other.ModuleHandle) &&
            Name.Equals(other.Name, StringComparison.Ordinal));
 }