Beispiel #1
0
 public T this[QEDParameterTypes type]
 {
     get => parameters[(int)type];
Beispiel #2
0
 public bool ContainsKey(QEDParameterTypes key) => true;
Beispiel #3
0
 public bool TryGetValue(QEDParameterTypes key, out T value)
 {
     value = this[key];
     return(true);
 }