When I place an open figure in Visual Studio 2017 (C #), the cursor automatically moves to the next line to the left of the final curly bracket. Like this (period as cursor):
if() {
.}
I would like the cursor to be automatically included in this line (period as a cursor):
if() {
.
}
Does anyone know how to make the cursor automatically go where the period is in the second example?
source
share