Resharper の「コードの生成」機能を使用してパラメーターを持つコンストラクターを作成すると、次のような結果が得られます。
public class Example{
private int _x;
private int _y;
public Example(int _x, int _y){
this._x = _x;
this._y = _y;
}
}
代わりに、この命名規則を使用したいと思います。
public class Example{
private int _x;
private int _y;
public Example(int x, int y){
_x = x;
_y = y;
}
}
しかし、このコンストラクタ テンプレートをどこで編集できるかはわかりません。