AllReady.Extensions.EnumerableExtensions.ToName C# (CSharp) Method

ToName() public static method

public static ToName ( this theType ) : string
theType this
return string
        public static string ToName(this UserType theType)
        {
            return Enum.GetName(typeof(UserType), theType);
        }
EnumerableExtensions