using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Prob
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
이렇게 적어놓으면 CS0017에러 뜨는데
프로그램에 진입점이 두 개 이상 정의되어 있습니다. Mainㅇ으로 컴파일하여 진입점이 포함된 형식을 지정하세요.
라고 적혀있음.
보다시피 메서드는 메인 하나뿐인데 뭐가 진입점이 두 개 이상이라는거임??
프로젝트 - 속성 - 시작 지점