Simply3DScan
Program.cs
Go to the documentation of this file.
1 using System;
2 using System.Windows.Forms;
3 
4 namespace ConvertFile
5 {
6  static class Program
7  {
11  [STAThread]
12  static void Main()
13  {
14  Application.EnableVisualStyles();
15  Application.SetCompatibleTextRenderingDefault(false);
16  Application.Run(new MainForm());
17  }
18  }
19 }
converts all whitespaces in a file to comma
Definition: MainForm.cs:10