CreateInt16() public static méthode

public static CreateInt16 ( ) : TypeRef
Résultat TypeRef
Exemple #1
0
 public static Value CreateConstUInt16(ushort value)
 {
     return(new Value(Native.ConstInt(TypeRef.CreateInt16().Handle, value, 0)));
 }
Exemple #2
0
 public static Value CreateConstInt16(short value)
 {
     return(new Value(Native.ConstInt(TypeRef.CreateInt16().Handle, (ulong)value, 1)));
 }