Net Framework
Net Framework
MODULE 1:
C# INTRODUCTION
n
Namespace MyProgram
{
Class Program
{
Static void Main(string[] args)
{
// code goes here
}
}
}
In the example the program declares a namespace called “My Program” and a
Contains a class called “Program”. The Main method is also included in the class
which is the entry point of the program.
MODULE 2:
.NET FRAMEWORK
STRUCTURE
The .NET Framework consists of libraries that
developers can use to create their programs.
NET architecture is the programming model
for the NET platform. Net Framework provides a
managed execution environment simplified
development and deployment and integration
with wide variety of programming languages.
Components of .NET Framework
❖ CLR (Common Language Runtime)
❖ CTS (Common Type System)
❖ BCL (Base Class Library)
❖ CLS (Common Language Specification)
❖ FCL (Framework Class Library)
❖ NET Assemblies
❖ XML Web Services
❖ Window Services
MODULE 3:
ASSEMBLY
USEE
What is the role of assembly in .NET Framework?
What are the assembly types .NET Framework?
What is assembly uses?
Why do we use assembly?
c
Namespaces
Classes
Methods
Variables
Statements
Comments
Directives
Entry Point