In JetBrains IntelliJ, one can write just sout
and the IDE write System.out.println();
I know that C# can be used in different types of projects.
- Some projects require printing things in console and thus we need to print things like
Console.WriteLine();
- Some other projects require printing using
ILogger
likelog.LogInformation();
- ... etc.
First, I wonder if there is something similar to IntelliJ print shortcut in JetBrains Rider? Then, is there a way to program this shortcut or change this shortcut manually so that it use the suitable print command for the project I work on?