When you add, for example, a class to a project by selecting Add > New Item > Visual C# Items > Class, the blinking text cursor inside the new class will be at row 1, column 1. Is there a way to modify the template so that the blinking cursor appears in a different location?
using System;
namespace SomeNamespace
{
class SomeClass
{
| <--- I'd like the blinking cursor to initially appear here
}
}