31 lines
		
	
	
		
			631 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			31 lines
		
	
	
		
			631 B
		
	
	
	
		
			C#
		
	
| using System;
 | |
| using System.Linq;
 | |
| using System.Collections.Generic;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| using INT_LKD.Forms;
 | |
| using INT_LKD.DialogForms;
 | |
| 
 | |
| namespace INT_LKD
 | |
| {
 | |
|     static class Program
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// The main entry point for the application.
 | |
|         /// </summary>
 | |
|         [MTAThread]
 | |
|         static void Main()
 | |
|         {
 | |
|             //try
 | |
|             //{
 | |
|                 Application.Run(new FormMain());
 | |
|             //}
 | |
|             //catch (Exception ex)
 | |
|             //{
 | |
|             //    MessageBox.Show(ex.ToString());
 | |
| 
 | |
|             //    FormMain.Exception(ex);
 | |
|             //}
 | |
|         }
 | |
|     }
 | |
| } |