获取枚举char值

时间:2014-09-08 21:49:33

标签: c# enums

我有一个Enum:

 public enum SensorType
    {

        Normal ='N',

        Lunch ='C',

        ALL
    }

在我的职能中:

private void GetData(SensorType type){

    var charValue = type.ToString(); // here I want to get the char value, not the string.
}

我想获得“N”或“C”等任何线索?

由于

1 个答案:

答案 0 :(得分:6)

只需输出值:

char charValue = (char)type;