例如,当您通过选择 Add > New Item > Visual C# Items > Class 将类添加到项目时,新类中闪烁的文本光标将位于第 1 行第 1 列。有没有办法修改模板使闪烁的光标出现在不同的位置?
using System;
namespace SomeNamespace
{
class SomeClass
{
| <--- I'd like the blinking cursor to initially appear here
}
}