Exemplo n.º 1
0
        // Add a new attribute to the set
        public void Add(SteAttributeKey key, object attribute)
        {
            ArrayList targetList;

            if (!_permutationBase.TryGetValue(key, out targetList))
            {
                targetList = new ArrayList();
                _permutationBase.Add(key, targetList);
            }

            targetList.Add(attribute);
        }
Exemplo n.º 2
0
 public SteAttribute(SteAttributeKey key, object value)
 {
     _key   = key;
     _value = value;
 }