Skip to main content

Featured Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

C# - Program Structure

Introduction

Now, we will learn basic structure of the c# program as well as building blocks. In this article, we will cover only basic structure of c#. In this article we will learn sample code plus provide additional background information.

C# Hello World! Example
Simple c# program should take some minimum functionality


  • Imported namespace ( How to use libraries)
  • Namespace declaration (How to create new Namespace in c#)
  • A class (How to design a class in c#)
  • Class methods (Default class consist of single main() method, you can take other methods)
  • Class Properties(it shows the behavior of the class as well as object)
  • A Main method (its the entry point of the c# program)
  • Statements & Expressions (You can put your ideas using statements and expression)
  • Comments (Design user friendly using comments)


Lets take a simple that would print Hello World!, I have visual studio 2013 , you can take 2005 and above version.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace csharpprogram
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Console.ReadKey(false);
        }
    }
}

If you want to compile and execute this code, press green triangle button, which is mentioned in VS IDE and see your result
C# - Program Structure- Hello world output

Ok, Now understand what is in this program:

  • The first five line of the program using System; and etc - the using keyword is most important keyword in c# library, you can take it in different purpose like The using block is used, where you want to deallocate resources forcefully. Also used where you want to add library references in the code. A program generally has multiple using statements.
  • The next line has the namespace declaration. A namespace is a collection of classes, enum , delegates , structure and etc, also its not a replacement of assemblies. Here csharpprogram namespace consists of single Program class.
  • The next line has a class declaration, the class Program contains data members and member functions, also known as encapsulation, which is discuss later. The data members shows the properties of the object and member functions shows behavior of the object. Like, we take a person as a object then we can take person name, person id, person address, etc as a data member and person_walk consider in member function. 
  • The next line defines the Main method, which is the entry point for all C# programs.  The main method consists of various statement. In our c# program, we can take multiple main methods.
  • The next line defines the WriteLine( ) method, which return the string output onto the screen. It is included in Console class , which is in System Namespace.
  • Using the Console.ReadKey( ) method, which is overloaded by boolean values. You can take true as well as false as a argument in it. False parameter shows presses key onto the screen. Using This method compiler wait for a key press and it prevents the screen from running and closing quickly when the program is launched from Visual Studio .NET. 
Note: Some Basic concepts about c#
  1. C# is a case sensitive language.
  2. Statement and expression end with semicolon(;)
  3. Always C# program start from main method.
How to Compile & Execute a C# Program: lets check this video.

Comments

Popular Post

Polynomial representation using Linked List for Data Structure in 'C'

Polynomial representation using Linked List The linked list can be used to represent a polynomial of any degree. Simply the information field is changed according to the number of variables used in the polynomial. If a single variable is used in the polynomial the information field of the node contains two parts: one for coefficient of variable and the other for degree of variable. Let us consider an example to represent a polynomial using linked list as follows: Polynomial:      3x 3 -4x 2 +2x-9 Linked List: In the above linked list, the external pointer ‘ROOT’ point to the first node of the linked list. The first node of the linked list contains the information about the variable with the highest degree. The first node points to the next node with next lowest degree of the variable. Representation of a polynomial using the linked list is beneficial when the operations on the polynomial like addition and subtractions are performed. The resulting polynomial can also

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Memory representation of Linked List Data Structures in C Language

                                 Memory representation of Linked List              In memory the linked list is stored in scattered cells (locations).The memory for each node is allocated dynamically means as and when required. So the Linked List can increase as per the user wish and the size is not fixed, it can vary.                Suppose first node of linked list is allocated with an address 1008. Its graphical representation looks like the figure shown below:       Suppose next node is allocated at an address 506, so the list becomes,   Suppose next node is allocated with an address with an address 10,s the list become, The other way to represent the linked list is as shown below:  In the above representation the data stored in the linked list is “INDIA”, the information part of each node contains one character. The external pointer root points to first node’s address 1005. The link part of the node containing information I contains 1007, the address of