I see the Enum.GetValues returns base Array type and Enum.GetNames returns a string array. But I don\'t understand how th
Think of enumerations as Name/Value pairs.
enum SignMagnitude { Negative = -1, Zero = 0, Positive = 1 };
In the example above, GetNames() will return a string array containing the items "Negative", "Zero", and "Positive." GetValues() will return an array of SignMagnitude containing SignMagnitude.Negative, SignMagnitude.Zero and SignMagnitude.One.
There is an example of binding Enum names to a dropdown in a DataGridView here: Create drop down list options from enum in a DataGridView