Example #1
0
        public int CompareTo(IStrength other)
        {
            var comparer = new StrengthComparer();

            return(comparer.Compare(this, other));
        }
Example #2
0
        public int CompareTo(object obj)
        {
            var comparer = new StrengthComparer();

            return(comparer.Compare(this, obj as IStrength));
        }