Точка вхождения в программу
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication416
{
public class MyForm : Form
{
public MyForm()
{
CenterToScreen();
this.Text = "Basic Paint Form";
}
public static void Main(string[] args)
{
Application.Run(new MyForm());
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.DrawString("HelloGDI+", new Font("Times New Roman", 20),
new SolidBrush(Color.Black), 0, 0);
}
}
}
// C# 2005. Компилятор выдаёт: Точка вхождеия более одной? Не вижу.
А я вижу)) в твоём проекте есть ещё файл, называется Program.cs, так вот в нём уже находится метод Main