public bool Equals(ExceptionExternalMethod other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.MethodName, MethodName) && Equals(other.CallerMethod, CallerMethod) && Equals(other.Line, Line) && Equals(other.ExceptionString, ExceptionString));
 }
 public bool Equals(ExceptionExternalMethod other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.MethodName, MethodName) && Equals(other.CallerMethod, CallerMethod) && Equals(other.Line, Line) && Equals(other.ExceptionString, ExceptionString);
 }