我有一些我想通過電子郵件發送的車輛信息。 我有所有的代碼工作,但間隔出來的信息是一個問題。每輛車都有一個清單,然後清單將通過電子郵件發送。所以我循環查看列表並獲取缺陷和評論。如何均勻隔開信息?
foreach (var item in chkList.CheckItems)
{
if (item.Defect == true)
{
defect += item.ItemTitle + " " + item.Comment + "\n";
}
}
if (hasDefect == true)
{
Utils.ChecklistSendMail("Checklist", ToAddresses.Split(';'),
"Vehicle Reg: " + reg + "\n" +
"Checklist No: " + chkList.CheckListNo + "\n"+
"Date: " + ChecklistDate.ToShortDateString() + "\n" +
"Defects: Comments: " + "\n" +
defect);
}
電子郵件則是這樣的:
Vehicle Reg: XLZ 8194
Checklist No: 0
Date: 22/03/2016
Defects: Comments:
Vehicle Secure comment1
Brakes comment2
我要顯示這樣的缺陷和評論:
Defects: Comments:
Vehicle Secure comment1
Brakes comment2
我如何均勻地間隔開出的缺陷和註釋?
如果你使用* form *那麼爲什麼不使用像'bootstrap'這樣的**框架**? – KDOT