menu

Introduction to C#

date_range 29/12/2017 00:00

C# is an object oriented language which runs on top .Net Framework. The framework provides language with basic class libraries and interfaces that can be used in handling basic chores.

Assembely

date_range 28/12/2017 00:00

A .net assembely contains our complied code which can run under the supervision of CLR. Assemblies are either exe files in case of windows or dll files. exe file can be executed directly but the same can’t be done with dll file. A dll file is a dynamic link library which contains the code that be re-used multiple times for building different applications. It contains meta data about the type present init.

Types

date_range 27/12/2017 00:00

Reference Types
A reference type contains a pointer to another memory location that holds the data. When ever we are creating a class we are creating a reference type variable. It is a reference or pointer that will tell runtime complier where to find value stored in the memory.

Classes

date_range 26/12/2017 00:00

Requirement Electronic Grade Book to read scores of an individual student and compute statiscts from the scores.

Control Flows

date_range 24/12/2017 00:00

Control Flows are branching and looping statement which helps us in deciding the flow of our program. As like other languages syntax of all control statments are similar. One other added feature in C# is the for each loops which helps us in Enumerating through an given collection.