In some cases constructor paramaters don't seem to be correctly highlighted on Github. Expected behavior is to paint variable type and variable name in different colors, but for now their colors are the same:
class WithDependencies
{
public WithDependencies(
INavigationService navigationService,
ICategoryManager categoryManager,
ISettingManager settingManager)
{
// Not OK
}
public WithDependencies(INavigationService navigationService)
{
// Not OK
}
public void Sample(string a, string b) { } // OK, but something's wrong with the comment
}
In some cases constructor paramaters don't seem to be correctly highlighted on Github. Expected behavior is to paint variable type and variable name in different colors, but for now their colors are the same: