Use method
Enum.GetName(Type MyEnumType, object enumvariable)
as in (Assume Shipper
is a defined Enum)
Shipper x = Shipper.FederalExpress;
string s = Enum.GetName(typeof(Shipper), x);
There are a bunch of other static methods on the Enum class worth investigating too...