성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>error CS5001: Program does not contain a static 'Main' method suitable for an entry point</h1> <p> 지난 글의 예제를,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > C# 9 최상위 문에 STAThread 사용 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/12623'>https://www.sysnet.pe.kr/2/0/12623</a> </pre> <br /> .NET Framework 4.0 대상의 C# 9.0 컴파일러로 실습하면 이런 오류가 발생합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Rebuild started... 1>------ Rebuild All started: Project: ConsoleApp1, Configuration: Debug Any CPU ------ 1>C:\temp\ConsoleApp1\Program.cs(1,1,33,2): warning CS0028: '<top-level-statements-entry-point>' has the wrong signature to be an entry point 1>C:\temp\ConsoleApp1\Program.cs(6,1,13,4): error CS1061: 'Task' does not contain a definition for 'GetAwaiter' and no accessible extension method 'GetAwaiter' accepting a first argument of type 'Task' could be found (are you missing a using directive or an assembly reference?) 1>CSC : error CS5001: Program does not contain a static 'Main' method suitable for an entry point 1>C:\temp\ConsoleApp1\Program.cs(6,1,13,3): error CS1061: 'Task<int>' does not contain a definition for 'GetAwaiter' and no accessible extension method 'GetAwaiter' accepting a first argument of type 'Task<int>' could be found (are you missing a using directive or an assembly reference?) ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ========== </pre> <br /> 오류 메시지가 "warning CS0028: '<top-level-statements-entry-point>' has the wrong signature to be an entry point"로 시작해 "error CS5001: Program does not contain a static 'Main' method suitable for an entry point"를 포함하고 있지만 실제 오류는 "error CS1061"에서 보여주는 메시지 때문에 발생하는 것입니다.<br /> <br /> 즉, <a target='tab' href='https://www.sysnet.pe.kr/2/0/12406'>C# 9.0의 TLS(최상위 문)</a>로 번역된 <Main>$ 메서드로의 변환이 허용되려면 GetAwaiter 메서드가 필요한데,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Task.GetAwaiter Method ; <a target='tab' href='https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.getawaiter'>https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.getawaiter</a> </pre> <br /> 그 메서드는 .NET 4.5부터 구현되어 있기 때문입니다. (참고로, "error CS5001: Program does not contain a static 'Main' method suitable for an entry point" 오류 메시지는 "<a target='tab' href='https://www.sysnet.pe.kr/2/0/12496#cs5001'>.NET Core 콘솔 프로젝트에서 Kestrel 호스팅 방법</a>" 글에서도 발생한 적이 있습니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
9575
(왼쪽의 숫자를 입력해야 합니다.)