Ejemplo n.º 1
0
 public static Int32NumericLiteral U16(this CommonFactory factory, UInt16?u16)
 {
     return(factory.I32(u16));
 }
Ejemplo n.º 2
0
 public static Int32NumericLiteral U8(this CommonFactory factory, Byte?b)
 {
     return(factory.I32(b));
 }
Ejemplo n.º 3
0
 public static Int32NumericLiteral I16(this CommonFactory factory, Int16?i16)
 {
     return(factory.I32(i16));
 }
Ejemplo n.º 4
0
 public static Int32NumericLiteral I8(this CommonFactory factory, SByte?sb)
 {
     return(factory.I32(sb));
 }