No, there aren't. If you're coming from VB then you may be confused because VB projects have the Application Framework enabled by default, which hides certain complexity from you. Part of what it hides is the Main method. The method exists but it is in auto-generated code that you can't access. If you disable the Application Framework then you can provide your own Main method and it works just like in C#.
There's no reason for you to change the declaration of the Main method in C# and there may well not even be a reason to change the definition. If you're creating a Console app then you will need to put your code into that method or at least call a method that does contain your code. If it's Windows Forms app, you probably don't need to do anything to it. The auto-generated method will contain code that creates and displays your startup form, which is generally all you need there.