Ejemplo n.º 1
0
        public IComparable this[StandardVariableCollectionKey Key]
        {
            get
            {
                if (!this.ContainsKey(Key.Key))
                    return null;

                return this[Key.Key];
            }
        }
Ejemplo n.º 2
0
 public void Add(StandardVariableCollectionKey Key, IComparable Value)
 {
     this.Add(Key.Key, Value);
 }
Ejemplo n.º 3
0
 public bool ContainsKey(StandardVariableCollectionKey Key)
 {
     return this.ContainsKey(Key.Key);
 }