Is it possible to modify the typing assist concat behavior.
Currently in R# If I have
var example = "This is a Example";
And I hit enter before the capital E I will get
var example = "This is a " +
"Example";
I would like to change that behavior to output instead
var example = "This is a " + "\n" +
"Example";
Is this possible to change in R#?
Please sign in to leave a comment.
Hello Scott,
There is no way to change this behavior.
Thanks!