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

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

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