My problem is when I create a new method it looks like this...
public string firstName {
}
The cursor is stays right before the }, and then if I type more code it looks like...
public string firstName {
get;}
And...
public string firstName {
get;
set;}
Then I have to press enter for it to look like...
public string firstName {
get;
set;
}
What I want for it to look like from the beginning is...
public string firstName {
<cursor here>
}
I've looked all over in the formatting options, and can't seem to find anything. I used to get it like this before, and I don't know what happened that caused this issue. It's very annoying! Please help.