Example #1
0
        public T Get <T>(StepTitle key)
        {
            if (_dict.ContainsKey(key))
            {
                return((T)_dict[key]);
            }

            throw new ArgumentException("Error: Could not ", key.ToString());
        }
Example #2
0
 public void Set(StepTitle key, object value)
 {
     _dict[key] = value;
 }