public Dictionary <TKey, TValue> GetTable()
 {
     if (this.table == null)
     {
         this.table = YS_Dictionary <TKey, TValue, TPair> .ConvertListToDictionary(this.list);
     }
     return(this.table);
 }
 public void Apply()
 {
     this.list = YS_Dictionary <TKey, TValue, TPair> .ConvertDictionaryToList(this.table);
 }