public static class StringExtensions {

        /// <summary>
        /// Parses a string into an Enum
        /// </summary>
        /// <typeparam name="T">The type of the Enum</typeparam>
        /// <param name="value">String value to parse</param>
        /// <returns>The Enum corresponding to the stringExtensions</returns>
        public static T EnumParse<T>(this string value) {
            return StringExtensions.EnumParse<T>(value, false);
        }

        public static T EnumParse<T>(this string value, bool ignorecase) {

            if (value == null) {
                throw new ArgumentNullException("value");
            }

            value = value.Trim();

            if (value.Length == 0) {
                throw new ArgumentException("Must specify valid information for parsing in the string.", "value");
            }

            Type t = typeof(T);

            if (!t.IsEnum) {
                throw new ArgumentException("Type provided must be an Enum.", "T");
            }

            return (T)Enum.Parse(t, value, ignorecase);
        }
    }

Useful to parse a string into an Enum.

    public enum TestEnum
    {
        Bar,
        Test
    }

    public class Test
    {
        public void Test()
        {
            TestEnum foo = "Test".EnumParse<TestEnum>();
        }
     }

Credit goes to [Scott Dorman][1]


  [1]: http://geekswithblogs.net/sdorman/