ASP.NET

C# Introduction

C# Introduction

In this session
1. We will learn the basic structure of a c# program. The program we used in this video is shown below.

// Namespace Declaration
using System;


class Pragim
{
    public static void Main()
    {
        // Write to console
        Console.WriteLine (“Welcome to PRAGIM Technologies!”); 
    }
}



2. Understand the purpose of using System declaration – The namespace declaration, using System, indicates that you are using the System namespace. If  you omit the using System, declaration, then you have to use the fully qualified name of the Console class. A namespace is used to organize your code and is collection of classes, interfaces, structs, enums and delegates. We will discuss about namespaces in detail in a later session.

3. Purpose of Main() method – Main method is the entry point into your application.

Reading and writing to a console

About the author

Avatar of shohal

shohal

I have profession and personal attachment with custom ERP Software development, Business Analysis, Project Management and Implementation almost (36) ,also Oracle Apex is my all-time favorite platform to developed the software. Moreover i have some website development experience with WordPress. For hand on networking experience DevOps and CCNA, it create me a full package. Here are some core programming language with networking course i have been worked: Oracle SQL ,PL/SQL,Oracle 19c Database , Oracle Apex 20.1,WordPress,Asp.Net ,MS SQL ,CCNA ,Dev Ops, SAP SD

Leave a Comment