28 lines
599 B
C#
28 lines
599 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
using ITC81DB.Forms;
|
|
|
|
namespace ITC81DB
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[MTAThread]
|
|
static void Main()
|
|
{
|
|
//try
|
|
//{
|
|
Application.Run(new FormMain());
|
|
//}
|
|
//catch (Exception ex)
|
|
//{
|
|
// System.IO.File.AppendText(@"SD Card\\Text.txt").Write(ex.ToString());
|
|
//}
|
|
}
|
|
}
|
|
} |