Assign Value 至 Excel SpreadSheet 上 指定既 Cell

 
Assign Value 至 Excel SpreadSheet 上 指定既 Cell
 

   Form1.cs
 
   using Excel = Microsoft.Office.Interop.Excel;
 
   private void AssignValue(Excel.Worksheet Sheet, int row, int col, string inputvalue)
   {
      Sheet.Cells[row, col] = inputvalue;
   }