示例#1
0
        protected IniSet <Int32> BindInt32Set(String name, HashSet <Int32> defaultValue)
        {
            IniSet <Int32> handler = IniValue.Int32Set(name);

            handler.Value = defaultValue;
            _bindings.Add(new SetBinding <Int32>(handler));
            return(handler);
        }
示例#2
0
 public SetBinding(IniSet <T> handler)
     : base(handler)
 {
     _handler      = handler;
     _initialValue = handler.Value;
 }