示例#1
0
        public static ValueUnit New(VarEntry[] args = null)
        {
            ValueUnit unit = new ValueUnit
            {
                IsInit = false,
                IsRan  = false,
                Scope  = Unit.New(null)
            };

            return(unit);
        }
示例#2
0
        public static ValueUnit New(VarData value)
        {
            //Run

            ValueUnit unit = new ValueUnit
            {
                IsInit = false,
                IsRan  = false,
                Scope  = Unit.New(null)
            };

            return(unit);
        }
示例#3
0
        public static void Main()
        {
            VarEntry entry = new VarEntry
            {
                Data = new VarData
                {
                    //Type = "string".GetType(),
                    Data = "string"
                }
            };

            Unit unit = new ValueUnit();

            //unit.Set();
        }