Rozmiar rzeczywisty tablic i innych elementow
int[] tabInt = new int[4]; int rozmiar = sizeof(int) * tabInt.Length; Console.WriteLine(rozmiar); Console.ReadKey();
int[] tabInt = new int[4]; int rozmiar = sizeof(int) * tabInt.Length; Console.WriteLine(rozmiar); Console.ReadKey();
string path = @”C:\plik.xlsx”; Application excel = new Application(); Workbook wb = excel.Workbooks.Open(path); Worksheet excelSheet = wb.ActiveSheet; //Read the first cell string test = excelSheet.Cells[3, 2].Value.ToString(); wb.Close(); Console.WriteLine(test); Console.ReadKey();
http://csharp.net-informations.com/excel/csharp-read-excel.htm http://csharp.net-informations.com/excel/csharp-create-excel.htm
http://hilite.me/