Initial commit.

+ CsvParser: CSV Parser with indexing.
+ CTextBox: CustomTextBox.
+ FrmCsvViewer: Basic form to view CSV files, as forms.
This commit is contained in:
2017-01-30 01:24:01 +01:00
commit cd5a7ad584
11 changed files with 1114 additions and 0 deletions

22
Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CsvView.Net
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmCsvViewer());
}
}
}