欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前台获取枚举的key值

程序员文章站 2022-05-28 22:58:10
如: 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>
}