I am trying to understand a few things about Enums in general and how they can work with Chars specifically. Below is my example I am working from:
public enum AuditInteractionTypes
{
Authorized = 'A',
Created = 'C',
Revised = 'R',
Extracted = 'E',
Deleted = 'D'
}
First, what's the difference between declaring them enum AuditInteractionTypes or enum AuditInteractionTypes : char
Second, I have seen the numerous post's about trying to use Enums with chars and how to "make" it work back and forth. Possible stupid question but why couldn't I simply go back and forth as a string.
So, for example, Authorized = "A".
I have am using Linq To SQL as my DAL if that matters though I am asking, I hope, a broader level question not specific to my environment.
charis not valid, but usingcharliterals to represent the per-item value is:enum Fruit : int { Apple = 'A', Orange = 'O', Banana = 'B' }– Adam Houldsworth Dec 12 '12 at 14:39charcan be used where the enumeration data type has implicit conversion tochar. – Adam Houldsworth Dec 12 '12 at 14:44AuditInteractionType; you use the plural form only when theFlagAttributeis applied to the enumeration. – casperOne♦ Dec 12 '12 at 14:46