Ejemplo n.º 1
0
        private string FormatTypeDisplayName(Type type)
        {
            var formatter = this.TypeDisplayNameFormatter;

            return(formatter != null
                ? formatter.Invoke(type)
                : TypeMeta.NicifyName(type.Name));
        }