Tag: c sharp .net

Constants in C# .NET

We can use constants in C# .NET as following: const int MAX_STUDENTS = 25; // Can set to a const or var; may be initialized...

Program Structure of C# .NET

Here is the basic program structure of C# .NET: using System; namespace Hello { public class HelloWorld { public static void Main(string args) { string...