You've got an enum value and you want that value as a string, eg to store in a database.
Enum.GetName does the job for you.
Example: string myString = Enum.GetName(typeof(ExportType), this.ExportType);
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.