예제 #1
0
 public LockedDownRegion(ObjectRegion region, string functionName)
     : base(region.Object)
 {
     foreach (var item in region.AllVariables())
     {
         variables[item.Key] = item.Value;
     }
     this.functionName = functionName;
 }
예제 #2
0
        public LockedDownRegion(ObjectRegion region, string functionName) : base(region.Object)
        {
            foreach (var(key, value) in region.AllVariables())
            {
                variables[key] = value;
            }

            this.functionName = functionName;
        }