help
Root Question Message
CTRL K + CTRL D
but it will format things around it like spacing between semicolons?var exportBatchInputs = new List<TbExportBatchInput>()
{
TestHelper.Fixture.Build<TbExportBatchInput>()
.With(c => c.ExportBatchId, TestHelper.BatchID)
.With(c=>c.FieldName, "PO Box") // note the spacing between the fat arrow here
.With(c=>c.FieldData, "12345") // note the spacing between the fat arrow here
.Create()
};
var foo = ()=>5;
var foo = () => 5;
.With
at the same depth as your TestHelper
, for example.