반응형 c# Exel1 [c#/WINFORM] - Datagridview Excel Export (엑셀 내보내기) 안녕하세요 프로그램에서 Datagridview의 데이터를 엑셀로 내보내기 기능을 많이 사용하여 공통 클래스를 생성 후 호출하여 사용할 수 있도록 코드 정리해 보았습니다. 1. Nuget 패키지 설치 Microsoft.office.Interop.Exel 을 검색하여 설치 2. Exel Export 클래스 생성 using Excel = Microsoft.Office.Interop.Excel; (using 선언 필요) public class ExcelExport { //using System.Runtime.InteropServices; [DllImport("user32.dll", SetLastError = true)] static extern uint GetWindowThreadProcessId(IntPtr .. 2022. 4. 18. 이전 1 다음 반응형