我有一种方法,我想要这样格式化:
public static IQueryable<ThingRequest> GetThings( this EntityContext one
, int? two = null
, int? three = null
, int? four = null
, int? five = null
, String six = null
, IEnumerable<String> seven = null) {
基本上,如果方法定义将超过行长度,我希望每行有一个参数。我对逗号不太关心(如果它们出现在每行的末尾,则罚款)。
但R # 格式像这样, 相反:
public static IQueryable<ThingRequest> GetThings( this EntityContext one, int? two = null, int? three = null, int? four = null, int? five = null,
String six = null, IEnumerable<String> seven = null ) {
...所以,它将它们排成几行, 但每行有几个参数, 很难选择任何一个参数。
顺便提一下,当 调用 方法时,如果最大线长度超过最大线长度(即使在这种情况下,我几乎更希望没有),它会一线一线地堆放参数。
我进入了R # 选项,探索了各种可供选择的复选框, 但我不知道如何改善我的处境。 想法?