public bool Equals(NativeFormatRuntimeAssembly other)
 {
     if (other == null)
     {
         return(false);
     }
     if (!(this.Scope.Reader == other.Scope.Reader))
     {
         return(false);
     }
     if (!(this.Scope.Handle.Equals(other.Scope.Handle)))
     {
         return(false);
     }
     return(true);
 }
        public sealed override bool Equals(Object obj)
        {
            NativeFormatRuntimeAssembly other = obj as NativeFormatRuntimeAssembly;

            return(Equals(other));
        }
 public bool Equals(NativeFormatRuntimeAssembly other)
 {
     if (other == null)
         return false;
     if (!(this.Scope.Reader == other.Scope.Reader))
         return false;
     if (!(this.Scope.Handle.Equals(other.Scope.Handle)))
         return false;
     return true;
 }