13 lines
189 B
C#
13 lines
189 B
C#
|
using System;
|
||
|
using System.Text;
|
||
|
using System.Linq;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
|
||
|
}
|