.NET and C# Introduction

21,686 views 13 slides Mar 10, 2013
Slide 1
Slide 1 of 13
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13

About This Presentation

Basic of C# and .NET Framework


Slide Content

AGENDA Microsoft .NET Platform and Visual Studio .NET Framework Introduction to C# OOPS component of C# Assemblies and Modules Sample Applications

.NET Platform .NET OOP JVM GUI Web component-based design n-tier design Influential Factors

Visual Studio=>”Everything including IDE”

.NET Framework

EXECUTION

Code Conversion

C# Developed specifically for .NET Enable programmers to migrate from C/C++ and Java easily Event-driven, fully OO, visual programming language Process of rapidly creating an application using an IDE is called Rapid Application Development (RAD) Language Interoperability and Reusability Windows Desktop, Windows Phone and Web Application & Services

C# Components Namespaces Classes Methods and Properties Delegates and Event Handler Interfaces Exception Handling Data Types Arrays

Data Types

Array Declaration i nt [] table; //not int table[] int [] number; number=new int [10]; number=new int [20]; Single Dimensional Arrays : int [] numbers; Multi Dimensional Arrays : int [,] numbers; Jagged Arrays : int [][] numbers;

Assemblies A logical collection of one or more EXEs and DLLs containing an application’s code and resources It contains Codes in MSIL Manifest (A metadata description of the code and resources)

THANK YOU