如: Enum ShowPosition { 首頁 = 0,一級分類頁 = 1,二級分類頁 = 2 } 想獲得漢字對應的數字,可用GetHashCode() html展示如下:迴圈枚舉 @foreach (B2B.Enum.ShowPosition pd in Enum.GetValues(type ...
如:
Enum ShowPosition
{
首頁 = 0,
一級分類頁 = 1,
二級分類頁 = 2
}
想獲得漢字對應的數字,可用GetHashCode()
html展示如下:迴圈枚舉
@foreach (B2B.Enum.ShowPosition pd in Enum.GetValues(typeof(B2B.Enum.ShowPosition)))
{
<option value="@pd.GetHashCode()">@pd</option>
}