コード例 #1
0
ファイル: EnumSetting.cs プロジェクト: lerpinglemur/Lemur
 public bool TryGetDesc(Enum e, out ValueDesc d)
 {
     if (this._valueDisplays.TryGetValue(e, out d))
     {
         return(true);
     }
     return(false);
 }
コード例 #2
0
ファイル: EnumSetting.cs プロジェクト: lerpinglemur/Lemur
 public void SetDesc(Enum e, ValueDesc d)
 {
     this._valueDisplays[e] = d;
 }