Exemplo n.º 1
0
 public bool TryGetDesc(Enum e, out ValueDesc d)
 {
     if (this._valueDisplays.TryGetValue(e, out d))
     {
         return(true);
     }
     return(false);
 }
Exemplo n.º 2
0
 public void SetDesc(Enum e, ValueDesc d)
 {
     this._valueDisplays[e] = d;
 }