ビジュアルスタジオ2010の設定方法マルチラインラムダ関数が醜く見えないように、左の空きスペースをすべて入れますか?ビジュアルスタジオ2010のラムダ関数の自動フォーマット
dataView.CellFormatting += (s, e) =>
{
if ((e.ColumnIndex == 1)&&((dataView.SelectedCells.Count == 1)))
{
var scope = Scope.Instance;
var row = dataView.Rows[e.RowIndex];
var variable = row.DataBoundItem as Variable;
if (scope.Variables.Contains(variable))
{
dataView[e.ColumnIndex, e.RowIndex].Style.BackColor =
scope.GetGraph(variable).Color;
}
else
{
dataView[e.ColumnIndex, e.RowIndex].Style.BackColor = Color.White;
}
}
};
後リターンを打つことを置くとき、私はあなたが言うしようとしているものを視覚化することができないかもしれない例のスニペット(前と後)が役立ちます – BoltClock
私が編集しました私の質問です。それが私の言いたいことです。 – Peter17
R#?http://stackoverflow.com/questions/2176429/is-there-a-way-t o-mark-up-code-to-tell-resharper-to-format-it – steamer25