Possible Duplicate:
i cant change static void Main(string[] args)
Hi,
when I change static void Main(string[] args) to this code
the error I get is
Program ‘C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\Project1\FtpFiles\FtpFiles\obj\Debug\FtpFiles.exe’ does not contain a static ‘Main’ method suitable for an entry point
Can anyone please help me?
You cannot change the “static void Main(string[] args)” name or argument, it is the entry point for the program.
If you don’t want the args[] parameter, just ignore it.