Exemplo n.º 1
0
        public static FmlArg Arg(BaseValueType t, double v)
        {
            FmlArg arg = new FmlArg(t);

            arg.SetDouble(v);
            return(arg);
        }
Exemplo n.º 2
0
        public static FmlArg Arg(BaseValueType t, long v)
        {
            FmlArg arg = new FmlArg(t);

            arg.SetInt64(v);
            return(arg);
        }
Exemplo n.º 3
0
        public static FmlArg Arg(BaseValueType t, float v)
        {
            FmlArg arg = new FmlArg(t);

            arg.SetSingle(v);
            return(arg);
        }
Exemplo n.º 4
0
        public static FmlArg Arg(BaseValueType t, int v)
        {
            FmlArg arg = new FmlArg(t);

            arg.SetInt32(v);
            return(arg);
        }