我有,我想格式化這樣的方法:如何格式化,以便垂直堆疊方法參數,每行一個?
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#選項,並探討了可用的各種複選框,但我沒有看到如何改善我的情況。想法?
我會更關心你接受了很多論點。 – CaffGeek
@CaffGeek沒有任何語境,我認爲跳躍參數的數量是錯位的。 – ErikE