0
What is meaning of this code static void Main(string[] args)
Please help me I don't know what meaning of this
4 odpowiedzi
+ 2
Hello there,
static void Main(string[] args) is basically just the 'main' method, and is where you write all of your code. It is the point where our program start execution and every application has the method Main in it. It is the starting point of every program which is why is it 'static'
void means there is no return type
Hope that makes sense
+ 3
Take a look at the below link:
https://www.geeksforgeeks.org/main-method-in-c-sharp/
It explains it much better and in much more depth than I did.
+ 2
Thank you man God bless you 🙂
+ 1
No problem clip maker, happy to help!