コード例 #1
0
ファイル: Market.cs プロジェクト: OguzhanYuksel/Rackle
 public static Market GetInstanceByName(string name)
 {
     return(MarketEnumList.FirstOrDefault(x => x.Text == name) ?? null);
 }
コード例 #2
0
ファイル: Market.cs プロジェクト: OguzhanYuksel/Rackle
 public static Market GetInstance(int value)
 {
     return(MarketEnumList.FirstOrDefault(x => x.Value == value) ?? null);
 }