示例#1
0
 public bool TryGetValue(string name, out CopyIndexState state)
 {
     if (name == null)
     {
         state = Current;
         return(state != null);
     }
     return(_Index.TryGetValue(name, out state));
 }
示例#2
0
 public void Push(CopyIndexState state)
 {
     _Current.Push(state);
     _Index[state.Name] = state;
 }
示例#3
0
 public void Add(CopyIndexState state)
 {
     _Index[state.Name] = state;
 }