我有一個簡單的問題,當試圖將List寫入Excel工作簿時。在串中的工作完美的,但問題是,如果使用循環從22B設置爲這是在列表 25B僅第一個值IM我如何把清單到ExcelC#。 microsoft interop excel
public List<string> _RoomType = new List<string>();
Excel.Range RoomType = (Excel.Range)_sheet.get_Range(_sheet.Cells[22, "B"] as Excel.Range, _sheet.Cells[25, "B"] as Excel.Range);
for (int i = 0; i < _RoomType.Count; i++)
{
RoomType.set_Value(Type.Missing, _RoomType[i]);
,如果我不使用「的」視覺工作室給我例外:從HRESULT異常:0x800A03EC 任何人都可以幫助我嗎?
從這裏激勵自己: http://stackoverflow.com/questions/1059951/export-a-c-list-of-lists-to-excel 這是否幫助? – Trefex