The main problem is how to change a color of method after dot, when I use it via an interface:
namespace Example
{
public class ExampleService : IExampleService
{
public const string DOCUMENT_TYPE = "PK";
readonly private IExampleRepository _exampleRepository;
public CheckoutDocumentService(IExampleRepository exampleRepository)
{
_exampleRepository = exampleRepository;
}
public void Method() <--- here color work good
{
var test = _exampleRepository.ToDoMethod();
}
}
}
-
ToDoMethod
is in white color instead of blue aka method, -
IExampleRepository
is in white color instead of yellow aka interface -
real example:
I’m using night owl theme.