Sharp Develop Problem

Started by
1 comment, last by en972 18 years, 9 months ago
Hi all, I'm having a small compile error with sharp develop. When I compile my C# program I get an error that says entry point not defined. Does anyone know how I can fix this? My code is using System; class Hello { static void main() { Console.WriteLine("hello, world"); } }
Belive it or not...this is C++....
Advertisement
Main has to have an uppercase M.

static void Main()

Welcome to the wonderful world of C#. =)
Thanks alot bro

Cheers
Belive it or not...this is C++....

This topic is closed to new replies.

Advertisement