32 lines
620 B
C#
32 lines
620 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Task8
|
|
{
|
|
internal static class Task8
|
|
{
|
|
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new Taskk8());
|
|
}
|
|
}
|
|
|
|
class Test
|
|
{
|
|
public enum BlaEnum
|
|
{
|
|
A, B, C,
|
|
}
|
|
}
|
|
}
|