Shaolinq.TypeExtensions.ToHumanReadableName C# (CSharp) Method

ToHumanReadableName() public static method

public static ToHumanReadableName ( this type ) : string
type this
return string
		public static string ToHumanReadableName(this Type type)
		{
			var builder = new StringBuilder();

			type.AppendHumanReadableName(builder);

			return builder.ToString();
		}