Thursday, 31 March 2016

What are the differences between static, public and void in C#?

  • 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.

No comments:

Post a Comment