Adf.Business.ValueObject.FileName.CompareTo C# (CSharp) Method

CompareTo() public method

Compares an FileName to the supplied object.
public CompareTo ( object obj ) : int
obj object The object to compare to.
return int
        public int CompareTo(object obj)
        {
            FileName other;
            try
            {
                other = (FileName)obj;
            }
            catch (InvalidCastException)
            {
                throw new ArgumentException("obj is not a FileName");
            }

            if (this < other)
            {
                return -1;
            }
            if (this > other)
            {
                return 1;
            }
            return 0;
        }