Ejemplo n.º 1
0
 public static bool assemblyBuiltin(QName left, out QName right)
 {
     right = (left.GetValueOrDefault<string>() + " = 42").CreateLiteral();
     return true;
 }
 public static bool isGreaterThan(QName left, QName right)
 {
     //test that left is greater then right and stop execution [return false;] if it is not thruth.
     return left.GetValueOrDefault<decimal>() > right.GetValueOrDefault<decimal>();
 }
Ejemplo n.º 3
0
 public static bool isGreaterThan(QName left, QName right)
 {
     //test that left is greater then right and stop execution [return false;] if it is not thruth.
     return(left.GetValueOrDefault <decimal>() > right.GetValueOrDefault <decimal>());
 }
Ejemplo n.º 4
0
 public static bool assemblyBuiltin(QName left, out QName right)
 {
     right = (left.GetValueOrDefault<string>() + " = 42").CreateLiteral();
     return true;
 }