我有一个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”等任何线索?
由于
答案 0 :(得分:6)
只需输出值:
char charValue = (char)type;