Datatable 출력 (1) 썸네일형 리스트형 c# DataTable 데이터 이쁘게 출력하기 (콘솔) 사전지식 검색해도 맘에 드는 것이 없어서 직접 소스를 작성하였다. 준비물 .net6.0 이상의 버전 에디터는 vscode or vs2022을 추천. 실습 1. 메서드 작성. using System.Data; internal static class DataTableEX { const string No = " №"; public static void Print(this DataTable table, bool rowNum = false) => Print(table, null, rowNum); public static void Print(this DataTable table, int top, bool rowNum = false) => Print(table, top, null, rowNum); public sta.. 이전 1 다음