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.

Related questions

0 votes
asked Jun 1, 2022 in JAVA by SakshiSharma
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...