public bool ContainsKey(InstantiationKey enumKey)
 {
     return(ContainsKey(enumKey.ToString()));
 }
 public bool TryGetValue(InstantiationKey enumKey, out object value)
 {
     return(TryGetValue(enumKey.ToString(), out value));
 }