Yet another aspect of source code distribution that isn't yet addressed is debugging behaviour. User code probably doesn't want to have the debugger step into stringBuilder.AppendFormattedName or type.GetFormattedName.
These extension methods should probably be decorates with a suitable [System.Diagnostics.Debugger...] custom attribute.
Yet another aspect of source code distribution that isn't yet addressed is debugging behaviour. User code probably doesn't want to have the debugger step into
stringBuilder.AppendFormattedName
ortype.GetFormattedName
.These extension methods should probably be decorates with a suitable
[System.Diagnostics.Debugger...]
custom attribute.