本文介绍了获取枚举数据值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用枚举数据类型如何获取It的值??

我的代码是

I m using enum data types how to get value of It???

My code Is

public  class clsTabs
{
    public clsTabs()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    public  enum TabControls
    {

        PersonalProfile=1,
        Address=2,
        NextOFKin=3,
        Dependents=4,
        Education=5,
        Experience=6,
        Reference=7,
        Documents=8,
        EmploymentCategory=9,



    }


}





int i= ((enum)clsTabs.TabControls.Address;

推荐答案

int i = (int)clsTabs.TabControls.Address;



强制转换(int)应该是您要返回的类型,而不是数据类型.



The cast (int) should be of the type that you want returned, not the type of the data.



<br />
int i =Convert.ToInt32(clsTabs.TabControls.Address);<br />



问候

Abraheem Abulubbad



regards

Abraheem Abulubbad


这篇关于获取枚举数据值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 06:01