コード例 #1
0
        protected UserboxCommand GetUserboxCommand(string index)
        {
            string value;

            if (_configuration.Items.TryGetValue(FullKey(index), out value))
            {
                return(UserboxCommand.Parse(value));
            }
            return(default(UserboxCommand));
        }
コード例 #2
0
 protected void Set(string index, UserboxCommand value)
 {
     Set(index, value.ToString());
 }