/// <summary>
 ///     Indicates whether the current object is equal to another object of the same type.
 /// </summary>
 /// <param name="other">An object to compare with this object.</param>
 /// <returns>
 ///     true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.
 /// </returns>
 /// <exception cref="NotImplementedException"></exception>
 public bool Equals(IMethodArgsInfoCache <TAtt> other)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 ///     Compares the current instance with another object of the same type and returns an integer that indicates whether
 ///     the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
 /// </summary>
 /// <param name="other">An object to compare with this instance.</param>
 /// <returns>
 ///     A value that indicates the relative order of the objects being compared. The return value has these meanings: Value
 ///     Meaning Less than zero This instance precedes <paramref name="other" /> in the sort order.  Zero This instance
 ///     occurs in the same position in the sort order as <paramref name="other" />. Greater than zero This instance follows
 ///     <paramref name="other" /> in the sort order.
 /// </returns>
 /// <exception cref="NotImplementedException"></exception>
 public int CompareTo(IMethodArgsInfoCache <TAtt> other)
 {
     throw new NotImplementedException();
 }