Ejemplo n.º 1
0
 public static string GetStackPop(NSSType type)
 {
     return(type.NativePopFormat);
 }
Ejemplo n.º 2
0
        public static string GetStackPush(NSSType type, Value val, bool isNWNX)
        {
            string format = isNWNX ? type.NWNXPushFormat : type.NativePushFormat;

            return(format != null?string.Format(format, GetValueAsString(val, false)) : null);
        }