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