Recent Posts

Static Keyword In C#

less than 1 minute read

When a method is static, it can be invoked directly from the class level without creating an object. It is the reason for making a main() method static.

What is C# and .NET

less than 1 minute read

C# is an elegant and type-safe object-oriented programming language that enables developer to build a variety of secure and robust applications on the top of...

Do A Program Have Multiple Main Method

less than 1 minute read

Basically main method is the entry point into application. We can define multiple Main methods but we have to select a single main method when running our ap...