my c# program is not showing 'static void main()' and program class

Viewed 31

I don't know why but i dont have entry point and program class!

this is my code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace project
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
    }
}

someone can pls give me solution for this.

0 Answers
Related