/*
Create: Visual C# - Console Application Project
Right click on: References
Select: Add references...
Select: com
Select: Microsoft Office 12.0/15.0/16.0 Object Library
In References list you will see: Microsoft.Office.Interop.Excel
*/
using System;
using Excel = Microsoft.Office.Interop.Excel;
namespace WorkWithExcel
{
class ExcelClass
{
static void Main(string[] args)
{
Excel.Application excelApp = new Excel.Application();
excelApp.Visible = true;
string WorkbookFileName = "e:/test.xlsx";
Excel.Workbook excelWorkbook = null;
try
{
excelWorkbook = excelApp.Workbooks.Open(WorkbookFileName);
Excel.Sheets excelSheets = excelWorkbook.Worksheets;
string currentSheet = "Sheet1";
Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);
Excel.Range excelCell = (Excel.Range)excelWorksheet.get_Range("A2", "A2");
excelCell.Value = "1000";
}
catch
{
Console.WriteLine("Error open: " + WorkbookFileName);
}
}
}
}