Excel sheets select first row with c#
c#, excel, linq
Solution
Try:
xlWorkSheet.Range("A1", "A1").EntireRow.Value;
Problem
I want to select excel sheets first row using interop object. How can i do ? ``` xlWorkBook = xlApp.Workbooks.Open(directory, 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0); xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1); range = xlWorkSheet.UsedRange; var List<string> tempList= range[1,*].Value.ToList(); ``` I want to write similar as abow. How can I write this situation