Exemplo n.º 1
0
        internal override int compareValue(Trait _trait)
        {
            double buf = (double)_trait.getValue();

            if (Soul < buf)
            {
                return(-1);
            }

            if (Soul > buf)
            {
                return(1);
            }

            return(0);
        }
Exemplo n.º 2
0
        internal override int compareValue(Trait _trait)
        {
            ushort buf = (ushort)_trait.getValue();

            if (enumData < buf)
            {
                return(-1);
            }

            if (enumData > buf)
            {
                return(1);
            }

            return(0);
        }
Exemplo n.º 3
0
        internal override int compareValue(Trait _trait)
        {
            DateTime buf = (DateTime)_trait.getValue();

            return(Soul.CompareTo(buf));
        }
Exemplo n.º 4
0
 internal override int compareValue(Trait _trait)
 {
     return(strData.CompareTo(_trait.getValue()));
 }
Exemplo n.º 5
0
        internal override int compareValue(Trait _trait)
        {
            Guid buf = (Guid)_trait.getValue();

            return(Soul.CompareTo(buf));
        }