0 votes
in C Sharp by
What are the differences between static, public and void in C#?

1 Answer

0 votes
by
Static classes/methods/variables are accessible throughout the application without creating instance. Compiler will store the method address as an entry point.

Public methods or variables are accessible throughout the application.

Void is used for the methods to indicate it will not return any value.
...