我是一個初學者到Visual Studio中,我可以創建Windows從項目和控制檯項目就好了,但我不能編譯空項目,Visual C#初學者空項目幫助?
我採取的步驟是:
- 創建空項目。
- 添加一個類,添加到系統的引用和System.Windows.Forms的
把下面的代碼類:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace Circles { class Program { static void Main(string[] args) { MessageBox.Show("Hello World!"); } } }
然後我打了編譯,它給了我這個錯誤:
Error 1 Program 'D:\C#\Projects\Circles\Circles\obj\x86\Debug\Circles.exe' does not contain a static 'Main' method suitable for an entry point Circles
的屬性生成操作設置爲編譯,但在項目roperties啓動對象未設置,這是導致該問題,若然CA我是嗎?
編輯:問題解決請參閱CharithJ的答案。 謝謝你們。
是的,它的工作原理非常感謝,請你解釋一下我做錯了什麼。 – 7VoltCrayon
@Suleman:我爲課程和Main方法都公開了。並且將Main改爲Main。而已。幾個簡單的問題。 – CharithJ