I have an Enum:
 public enum SensorType
    {
        Normal ='N',
        Lunch ='C',
        ALL
    }
In my function:
private void GetData(SensorType type){
    var charValue = type.ToString(); // here I want to get the char value, not the string.
}
I want to get "N", or "C" etc. any clue?
Thanks
 
    