我的代碼會產生這樣的如何格式化使用C#在Excel/CSV標題
|id | Name | Address | company_Name | Destination|
|----|-------|----------|--------------|------------|
|##1 | xxx | xxxx | xxx | xxxxx |
Excel文檔,但我想是這樣的...
-----------------------------------------------------
| Personal Information | Working INFO |
-----------------------------------------------------
|id | Name | Address | company_Name | Destination|
|----|-------|----------|--------------|------------|
|##1 | xxx | xxxx | xxx | xxxxx |
-----------------------------------------------------
我從數據API和我將使用它保存它SaveFileDialog
SaveFileDialog dialog = new SaveFileDialog();
dialog.Title = "Save file as...";
dialog.Filter = "Text files (*.csv)|*.csv";
dialog.RestoreDirectory = true;
if (dialog.ShowDialog() == DialogResult.OK)
{
System.IO.StreamWriter writer = new System.IO.StreamWriter(dialog.FileName); //open the file for writing.
writer.Write(report); //write the current date to the file. change this with your date or something.
writer.Close(); //remember to close the file again.
writer.Dispose(); //remember to dispose it from the memory.
program.ShowInformationMessage("File Save successfully");
}
它沒有問題。
我想使標題爲內聯的東西。
你知道爲什麼你是從別人收到downvote?由於這個原因:「你寫的代碼的問題必須在問題本身中描述具體問題 - 幷包含有效的代碼以再現它。」所以,展示你現在擁有的東西。 –
你在使用Interop嗎?如果是,請參閱[這](http://www.siddharthrout.com/vb-dot-net-and-excel/)檢查「合併/取消合併單元格」部分代碼在vb中。淨,但可以輕鬆移植到C# –
忽略我上面的評論。我剛看到你的編輯。 –