Program * does not contain a static ‘Main’ method suitable for an entry point

Though your question is not clear due to the image, but what I see wrong here is that, Main has been spelled incorrectly,

You have written s

MaIN(string[] args)

its should be

 Main(string[] args)

*see the capitalization.

Please make it a practice to post codes rather than posting images.

Leave a Comment