Exemple #1
0
 public static SybaseBoolean NotEquals(SybaseGuid x, SybaseGuid y)
 {
     return(x != y);
 }
Exemple #2
0
 public static SybaseBoolean LessThan(SybaseGuid x, SybaseGuid y)
 {
     return(x < y);
 }
Exemple #3
0
 public static SybaseBoolean LessThanOrEqual(SybaseGuid x, SybaseGuid y)
 {
     return(x <= y);
 }
Exemple #4
0
 public static SybaseBoolean GreaterThan(SybaseGuid x, SybaseGuid y)
 {
     return(x > y);
 }
Exemple #5
0
 public static SybaseBoolean GreaterThanOrEqual(SybaseGuid x, SybaseGuid y)
 {
     return(x >= y);
 }
		public static SybaseBoolean NotEquals (SybaseGuid x, SybaseGuid y)
		{
			return (x != y);
		}
		public static SybaseBoolean LessThanOrEqual (SybaseGuid x, SybaseGuid y)
		{
			return (x <= y);
		}
		public static SybaseBoolean LessThan (SybaseGuid x, SybaseGuid y)
		{
			return (x < y);
		}
		public static SybaseBoolean GreaterThanOrEqual (SybaseGuid x, SybaseGuid y)
		{
			return (x >= y);
		}
		public static SybaseBoolean GreaterThan (SybaseGuid x, SybaseGuid y)
		{
			return (x > y);
		}