我像这样实例化一个List:
var list = new List<string>()
{
"foo" ,
"bar", "toto"
};
我希望使用Visual Studio的代码格式化功能,我可以获得如下结果:
var list = new List<string>()
{
"foo",
"bar",
"toto"
};
但它不起作用。不知道是否有可能修复它?
感谢名单
答案 0 :(得分:0)
Visual Studio没有这样的集合初始化程序格式规则,而EditorConfig也没有(请参阅MSDN上的.NET coding convention settings for EditorConfig文章)。要将自定义格式应用于现有代码,您可以使用正则表达式和Find and Replace Visual Studio功能。