Exemplo n.º 1
0
        public static bool operator >=(Characters c1, string s)
        {
            bool isLE = Characters.AreEqual(c1.CharArray, s.ToCharArray()) || Characters.LargeThan(c1.CharArray, s.ToCharArray());

            return(isLE);
        }
Exemplo n.º 2
0
        public static bool operator >=(string s, Characters c2)
        {
            bool isLE = Characters.AreEqual(s.ToCharArray(), c2.CharArray) || Characters.LargeThan(s.ToCharArray(), c2.CharArray);

            return(isLE);
        }
Exemplo n.º 3
0
        public static bool operator >=(Characters c1, Characters c2)
        {
            bool isLE = Characters.AreEqual(c1.CharArray, c2.CharArray) || Characters.LargeThan(c1.CharArray, c2.CharArray);

            return(isLE);
        }
Exemplo n.º 4
0
 public static bool operator >(Characters c1, string s)
 {
     return(Characters.LargeThan(c1.CharArray, s.ToCharArray()));
 }
Exemplo n.º 5
0
 public static bool operator >(string s, Characters c2)
 {
     return(Characters.LargeThan(s.ToCharArray(), c2.CharArray));
 }
Exemplo n.º 6
0
 public static bool operator >(Characters c1, Characters c2)
 {
     return(Characters.LargeThan(c1.CharArray, c2.CharArray));
 }