私のプロジェクトには、メソッド シグネチャを読みやすくするためのコーディング規約があります。例えばこんな感じ
public static AxesPositions AxesAlignment
( Point p
, Vector n
, List<Point> toolInsertSection
, double millingHeadRadius
, double swivelAngle
, IScrew part
, double machiningTolerance
, double meshEpsilon)
ただし、Visual Studio が再インデントされるたびに
public static AxesPositions AxesAlignment
(Point p
, Vector n
, List<Point> toolInsertSection
, double millingHeadRadius
, double swivelAngle
, IScrew part
, double machiningTolerance
, double meshEpsilon)
おそらく私はOCDですが、最初のパラメーターが詰まっているのを見ると(
イライラします。Visual Studio 2012 でこの動作を変更する方法はありますか。