private void UpdateTable(string filepath)
        {
            string htmlText = bl.makeTable(filepath);

            PreviewWB.NavigateToString(htmlText);
            currentHtmlTableText = htmlText;
            UpdateRichTextBox(CodeRTB, htmlText);
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Bl bl = new Bl();

            bl.makeTable(@"C:\Users\Novus\source\repos\CSVTable\DataLayer\test.csv");
        }