ArchiMetrics.Analysis.Common.Metrics.TypeCoupling.CompareTo C# (CSharp) Method

CompareTo() public method

Compares the current object with another object of the same type.
public CompareTo ( ITypeCoupling other ) : int
other ITypeCoupling An object to compare with this object.
return int
		public int CompareTo(ITypeCoupling other)
		{
			return other == null ? -1 : string.Compare(ToString(), other.ToString(), StringComparison.OrdinalIgnoreCase);
		}
	}