Bari.Core.Build.Statistics.DefaultBuilderStatistics.FormatType C# (CSharp) Method

FormatType() private method

private FormatType ( Type type ) : string
type System.Type
return string
        private string FormatType(Type type)
        {
            if (type.IsGenericType)
            {
                return String.Format("{0}<{1}>", type.Name, String.Join(", ", type.GetGenericArguments().Select(FormatType)));
            }
            else
            {
                return type.Name;
            }
        }
DefaultBuilderStatistics