PRESENTATION ON  BY: SHUBHRA CHAUHAN Vs
HISTORY OF C AND C SHARP C sharp was developed by Microsoft within its .NET initiative. C sharp is one of the programming language designed for the common language infrastructure. C  was developed by DENNIS RITCHIE at the Bell Telephone laboratories for use with the  unix operating system
FEATURES OF C Structured programming language. General purpose programming language. Widely used in the development of system software. Contains rich set of operators and data types. C allows the user to add functions to the library. C is highly portable. Most of the C programs can be processed on  many different computers with little or no alteration.
FEATURES OF  C SHARP It is simple, modern, object oriented language derived from C++ and JAVA . It aims to combine the high productivity of VISUAL BASIC and the raw power of C ++. It is a part of Microsoft Visual Studio 7.0. It  supports garbage collection, automatic memory management and a lot. In C# Microsoft has taken care of C++ problems such as Memory management, pointers etc.  In C# there is no usage of "::" or "->" operators. It is simple, modern, object o
DATA TYPES IN C DATA TYPE PRIMITIVE AGGREGATE USER DEFINED INT FLOAT DOUBLE CHAR ARRAY STRUCTURE ENUM
DATA TYPES IN C SHARP DATA TYPES VALUE TYPES SIMPLE TYPE ENUM STRUCTURE REFERENCE TYPES CLASS ARRAYS DELEGATIONS INTERFACES POINTER TYPES
EXAMPLE OF C #include<stdio.h> #include<conio.h> void main() { printf(“welcome to C”); getch(); } Output: welcome to C
EXAMPLE OF C SHARP Using system; class hello { static void main() { console.writeline(“welcome to C sharp”); } } Output: welcome to C sharp
LOOPS IN C For loop syntax of for loop:- for(initialisation;test condition;increamen / decreament) { set of statements; } while loop syntax of while loop:- while(test condition) { set of statements; increament / decreament; } Do while loop syntax of do while loop:- do { set of statements: increament / decreament; }while(test condition);
LOOPS IN C SHARP For loop syntax of for loop for(initialisation:test condition;increament / decreament) { set of statements; } While loop syntax of while loop while(test condition) { set of statements; increament / decreament; } continue...
Do while loop syntax of do while loop do { set of statements; increament / decreament; }while(test condition); Foreach loop syntax of foreach loop foreach(DataType var in DataTypeCollection) { set of statements; }  continue...
CONDITIONAL STATEMENTS C and C# have following two types of conditional statements:- IF STATEMENT Syntax :- if(condition) { statement1; } else { statement 2' } SWITCH STATEMENT Syntax: switch(expression) {  case constant1 : statement sequence1; break;  case constant2 : statement sequence2;  break;  case constant (n-1) : statement sequence(n-1) ; break;  default : statement; }
FUNCTION IN  C A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also optionally returns a value to the calling program. Structure of a Function A general form of a C function looks like this: <return type> FunctionName (Argument1, Argument2, Argument3……) { Statement1; Statement2; Statement3; }
Example of a simple function to add two integers #include<stdio.h> #include<conio.h> void add(int x,int y) { int result; result = x+y; printf(&quot;Sum of %d and %d is %d.\n\n&quot;,x,y,result); } void main() { clrscr(); add(10,15); add(55,64); getch(); } Output: sum of 10 and 15 is 25 sum of 55 and 64 is 119
PASSING ARGUMENTS TO FUNCTION We can pass arguments to a function by following two ways: 1)Call by Value 2)Call by Reference 1) Call by Value: In Call by Value, only the values taken by the arguments are sent to the function. In call by value any changes made to the formal arguments do not cause any change to the actual arguments. 2) Call by Reference: In Call by Reference, only the addresses taken by the arguments are sent to the function. In call by reference any changes made to the formal arguments cause changes to the actual arguments.
FUNCTION IN C SHARP To define a C# function you must declare it outside the main() block. Structure  of function A function in C sharp look like this <visibility><return type><function name>(<parameter>) { statement1; statement2; statement3; }
C# Function Parameters C# methods can accept values when a variable calls it. using System; class Program { static int Multiply(int x)  //accepts only a int value { return x * 2; } static void Main() { int z = 3; Console.WriteLine(Multiply(z));  //Prints the returned value Console.Read(); } } Output: 6
C# CALL BY REFERENCE In c# , call by reference can  be done by using ref  and out modifier. The difference between ref and out modifier is that a value passed to ref modifier has to be initialised before calling the method whereas this is not true for out modifier.
By  ref  modifier using System; class Program { static void AddOne(ref int x) { x = x + 1; } static void Main() { int z = 8; AddOne(ref z);  // variable z will be changed in function Console.WriteLine(z);  Console.Read(); } } Output: 9
BY OUT MODIFIER using System ; class Program { static int AddOne(out int x)  { int y = 90; x = 19;  // out variable must be initialized x = x + 1; return y + 1; } static void Main() { int z;  // out variable must be unassigned be declared Console.WriteLine(AddOne(out z)); Console.WriteLine(z); Console.Read(); } } Output : 91 20
ARRAY IN C AND C SHARP Array is a collection of same type elements under the same variable identifier referenced by index number . Arrays are of two types single dimension array and multi-dimension array.  Each of these array type can be of either static array or dynamic array. Static arrays have their sizes declared from the start and the size cannot be changed after declaration.  Dynamic arrays that allow you to dynamically change their size at runtime. A single dimension array is represented be a single column, whereas a multiple dimensional array would span out n columns by n rows.
SINGLE DIMENSION ARRAYS Declaring Single Dimension Arrays Arrays can be declared using any of the data types available in C and C#.You can declare a single dimensional array as follows:  <data type> array_name[size_of_array]; Initializing Single Dimension Arrays Array can be initialized in two ways: initializing on declaration   <data type> array_name[size_of_array] = {element 1, element 2, ...}; Initialized by Assignment <data type>array_name[size_of_dimension1][size_of_dimension2]; array_name[0]=element1; array_name[1]=element2; . . array_name[size_of_array]=element n;
MULTIDIMENSION ARRAY Declaring Multidimensional Arrays To declare a multidimensional array:  <data type> array_name[size_of_first_dimension][size_of_second_dimension] ... Initializing Multidimensional Arrays   Initialisation on declaration <data type> array_name[size_of_dimension1][size_of_second_dimension2] ... = {element 1, element 2, element 3, …}, Initialization on assignment int marks[2][4]: marks[0][0]=1; marks[0][1]=2; marks[0][2]=3; marks[0][3]=4; marks[1][0]=6; marks[1][1]=7; marks[1][2]=8;marks[1][3]=9;
JAGGED  ARRAY A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an &quot;array of arrays.&quot; A special type of array is introduced in C#. A Jagged Array is an array of an array in which the length of each array index can differ. Example: int[][] jagArray = new int[5][ ]; In the above declaration the rows are fixed in size. But columns are not specified as they can vary.
DECLARING AND INITIALIZING JAGGED ARRAY DECLARATION int[][] jaggedArray = new int[5][];  jaggedArray[0] = new int[3];  jaggedArray[1] = new int[5];  jaggedArray[2] = new int[2];  jaggedArray[3] = new int[8];  jaggedArray[4] = new int[10];  INITIALISATION jaggedArray[0] = new int[] { 3, 5, 7, };  jaggedArray[1] = new int[] { 1, 0, 2, 4, 6 };  jaggedArray[2] = new int[] { 1, 6 };  jaggedArray[3] = new int[] { 1, 0, 2, 4, 6, 45, 67, 78 };  jaggedArray[4] = new int[] { 1, 0, 2, 4, 6, 34, 54, 67, 87, 78 };
POINTER IN C AND C SHARP C and C# both supports the pointer concept. But in C# pointer can only be declared to hold the memory address of value types and arrays pointers are not allowed to point to a reference type or even to a structure type which contains a reference type Declaring a Pointer type  The general form of declaring a pointer type is as shown below  type *variable_name;  Where * is known as the de-reference operator. For example the following statement int *x ;  Declares a pointer variable x, which can hold the address of an int type. The reference operator (&) can be used to get the memory address of a variable.  int x = 100; The &x gives the memory address of the variable x, which we can assign to a pointer variable int *ptr = & x;
OOPS CONCEPT IN C# Key Concepts of Object Orientation * Abstraction * Encapsulation * Polymorphism * Inheritance Abstraction  is the ability to generalize an object as a data type that has a specific set of characteristics and is able to perform a set of actions. Object-oriented languages provide abstraction via classes. Classes define the properties and methods of an object type. Classes are declared using the keyword class, as shown in the following example: public class Draw { // Class code. }
ACCESS MODIFIER ACCESS MODIFIER DESCRIPTION private Only members within the same type Protected Only derived types or members of the same type Internal Only code within the same assembly. Can also be code external to object as long as it is in the same assembly. Protected internal Either code from derived type or code in the same assembly. Combination of protected OR internal. public Any code. No inheritance, external type, or external assembly restrictions.
ENCAPSULATION Encapsulation is the procedure of covering up of data and functions into a single unit (called class). An encapsulated object is often called an abstract data type.Encapsulation provides a way to protect data from accidental corruption. POLYMORPHISM Polymorphism is the ability to use an operator or function in different ways. Polymorphism gives different meanings or functions to the operators or functions. Poly, referring to many, signifies the many uses of these operators and functions. A single function usage or an operator functioning in many ways can be called polymorphism. Polymorphism refers to codes, operations or objects that behave differently in different contexts.
INHERITANCE Inheritance is a mechanism of reusing and extending existing classes without modifying them, thus producing hierarchical relationships between them. Inheritance is almost like embedding an object into a class. Suppose that you declare an object x of class A in the class definition of B. As a result, class B will have access to all the public data members and member functions of class A. However, in class B, you have to access the data members and member functions of class A through object x.
ADVANTAGES OF C# OVER C Don't need to worry about header files &quot;.h&quot; Definition of classes and functions can be done in any order Pointers no longer needed (but optional) It is compiled to an intermediate language (CIL) indepently of the language it was developed or the target architecture and operating system Automatic garbage collection Classes can be defined within classes
CONCLUSION C# gives you access to a rich set of built-in types based on the common type system as well as the .NET Framework class library. As with all object-oriented languages, in C# you leverage built-in types and class libraries to build new types for your applications.C# shares many of the features of other object-oriented languages, such as C++.
REFERENCES www.msdnmicrosoft.com www.csharpstation.com www.wikipedia.org

More Related Content

PDF
PHP Basic & Variables
PPTX
Java Programming
PPSX
Exception Handling
PPTX
Virtual function in C++ Pure Virtual Function
PPTX
Java exception handling
PDF
Streams in Java 8
PDF
PPT
Scala Talk at FOSDEM 2009
PHP Basic & Variables
Java Programming
Exception Handling
Virtual function in C++ Pure Virtual Function
Java exception handling
Streams in Java 8
Scala Talk at FOSDEM 2009

What's hot (20)

PPTX
Java interface
PPT
Visula C# Programming Lecture 1
PPTX
Exception handling in asp.net
PDF
Quick introduction to scala
PPTX
Core java complete ppt(note)
PPTX
Golang - Overview of Go (golang) Language
PDF
Sending emails through PHP
PPTX
C# in depth
PPT
C#.NET
PPTX
Function overloading and overriding
PPTX
C# programming language
PDF
Exception handling
PDF
Java 8 features
PDF
JAVA PPT Part-1 BY ADI.pdf
PPT
Java Presentation
PDF
Functional programming
PPTX
Structure in c#
PPTX
Exception handling
PPTX
Exception Handling in Java
PPSX
Complete C programming Language Course
Java interface
Visula C# Programming Lecture 1
Exception handling in asp.net
Quick introduction to scala
Core java complete ppt(note)
Golang - Overview of Go (golang) Language
Sending emails through PHP
C# in depth
C#.NET
Function overloading and overriding
C# programming language
Exception handling
Java 8 features
JAVA PPT Part-1 BY ADI.pdf
Java Presentation
Functional programming
Structure in c#
Exception handling
Exception Handling in Java
Complete C programming Language Course
Ad

Viewers also liked (20)

PDF
Differences between c and c++
ODP
Ppt of c++ vs c#
PDF
Object oriented-programming-in-c-sharp
PPTX
C vs c++
PPT
C# basics
PPTX
CSharp Presentation
PDF
Design in Tech Report 2017
PPTX
C sharp
PPTX
C++ vs C#
PPTX
difference between c c++ c#
PPTX
C vs c++
PPTX
Participatory diagnostics of animal health service delivery systems in Mali
PPTX
C# Tutorial
PPTX
.NET and C# Introduction
PPSX
Introduction to .net framework
PDF
Meta edit calc execution v3
PDF
CDSS Service Offerings
PDF
Recent personal injury awards in the High Court and Court of Appeal
PDF
Saudi Arabia Vision 2030, an opportunity to Italian companies...
PDF
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Differences between c and c++
Ppt of c++ vs c#
Object oriented-programming-in-c-sharp
C vs c++
C# basics
CSharp Presentation
Design in Tech Report 2017
C sharp
C++ vs C#
difference between c c++ c#
C vs c++
Participatory diagnostics of animal health service delivery systems in Mali
C# Tutorial
.NET and C# Introduction
Introduction to .net framework
Meta edit calc execution v3
CDSS Service Offerings
Recent personal injury awards in the High Court and Court of Appeal
Saudi Arabia Vision 2030, an opportunity to Italian companies...
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Ad

Similar to Ppt of c vs c# (20)

PPTX
c# at f#
PPTX
C# AND F#
PDF
C Sharp: Basic to Intermediate Part 01
PPTX
2 programming with c# i
PPT
Csharp4 basics
PPTX
Chapter 2 c#
PPTX
unit 1 (1).pptx
PPTX
Notes(1).pptx
DOCX
Unit 1 question and answer
PPT
Introduction to csharp
PPT
Introduction to-csharp-1229579367461426-1
PPT
Introduction To Csharp
PPT
Introduction to csharp
PPT
Introduction to csharp
PPS
Introduction to CSharp
PPT
Visula C# Programming Lecture 2
PPT
Introduction to C#
PPT
C intro
PPTX
Getting Started - Console Program and Problem Solving
c# at f#
C# AND F#
C Sharp: Basic to Intermediate Part 01
2 programming with c# i
Csharp4 basics
Chapter 2 c#
unit 1 (1).pptx
Notes(1).pptx
Unit 1 question and answer
Introduction to csharp
Introduction to-csharp-1229579367461426-1
Introduction To Csharp
Introduction to csharp
Introduction to csharp
Introduction to CSharp
Visula C# Programming Lecture 2
Introduction to C#
C intro
Getting Started - Console Program and Problem Solving

Recently uploaded (20)

PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PPTX
History, Philosophy and sociology of education (1).pptx
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
PDF
International_Financial_Reporting_Standa.pdf
PDF
HVAC Specification 2024 according to central public works department
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PDF
My India Quiz Book_20210205121199924.pdf
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PPTX
Computer Architecture Input Output Memory.pptx
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
Weekly quiz Compilation Jan -July 25.pdf
Chinmaya Tiranga quiz Grand Finale.pdf
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
Environmental Education MCQ BD2EE - Share Source.pdf
History, Philosophy and sociology of education (1).pptx
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
International_Financial_Reporting_Standa.pdf
HVAC Specification 2024 according to central public works department
Cambridge-Practice-Tests-for-IELTS-12.docx
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
B.Sc. DS Unit 2 Software Engineering.pptx
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
My India Quiz Book_20210205121199924.pdf
TNA_Presentation-1-Final(SAVE)) (1).pptx
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
FORM 1 BIOLOGY MIND MAPS and their schemes
Computer Architecture Input Output Memory.pptx
Practical Manual AGRO-233 Principles and Practices of Natural Farming

Ppt of c vs c#

  • 1. PRESENTATION ON BY: SHUBHRA CHAUHAN Vs
  • 2. HISTORY OF C AND C SHARP C sharp was developed by Microsoft within its .NET initiative. C sharp is one of the programming language designed for the common language infrastructure. C was developed by DENNIS RITCHIE at the Bell Telephone laboratories for use with the unix operating system
  • 3. FEATURES OF C Structured programming language. General purpose programming language. Widely used in the development of system software. Contains rich set of operators and data types. C allows the user to add functions to the library. C is highly portable. Most of the C programs can be processed on many different computers with little or no alteration.
  • 4. FEATURES OF C SHARP It is simple, modern, object oriented language derived from C++ and JAVA . It aims to combine the high productivity of VISUAL BASIC and the raw power of C ++. It is a part of Microsoft Visual Studio 7.0. It supports garbage collection, automatic memory management and a lot. In C# Microsoft has taken care of C++ problems such as Memory management, pointers etc. In C# there is no usage of &quot;::&quot; or &quot;->&quot; operators. It is simple, modern, object o
  • 5. DATA TYPES IN C DATA TYPE PRIMITIVE AGGREGATE USER DEFINED INT FLOAT DOUBLE CHAR ARRAY STRUCTURE ENUM
  • 6. DATA TYPES IN C SHARP DATA TYPES VALUE TYPES SIMPLE TYPE ENUM STRUCTURE REFERENCE TYPES CLASS ARRAYS DELEGATIONS INTERFACES POINTER TYPES
  • 7. EXAMPLE OF C #include<stdio.h> #include<conio.h> void main() { printf(“welcome to C”); getch(); } Output: welcome to C
  • 8. EXAMPLE OF C SHARP Using system; class hello { static void main() { console.writeline(“welcome to C sharp”); } } Output: welcome to C sharp
  • 9. LOOPS IN C For loop syntax of for loop:- for(initialisation;test condition;increamen / decreament) { set of statements; } while loop syntax of while loop:- while(test condition) { set of statements; increament / decreament; } Do while loop syntax of do while loop:- do { set of statements: increament / decreament; }while(test condition);
  • 10. LOOPS IN C SHARP For loop syntax of for loop for(initialisation:test condition;increament / decreament) { set of statements; } While loop syntax of while loop while(test condition) { set of statements; increament / decreament; } continue...
  • 11. Do while loop syntax of do while loop do { set of statements; increament / decreament; }while(test condition); Foreach loop syntax of foreach loop foreach(DataType var in DataTypeCollection) { set of statements; } continue...
  • 12. CONDITIONAL STATEMENTS C and C# have following two types of conditional statements:- IF STATEMENT Syntax :- if(condition) { statement1; } else { statement 2' } SWITCH STATEMENT Syntax: switch(expression) { case constant1 : statement sequence1; break; case constant2 : statement sequence2; break; case constant (n-1) : statement sequence(n-1) ; break; default : statement; }
  • 13. FUNCTION IN C A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also optionally returns a value to the calling program. Structure of a Function A general form of a C function looks like this: <return type> FunctionName (Argument1, Argument2, Argument3……) { Statement1; Statement2; Statement3; }
  • 14. Example of a simple function to add two integers #include<stdio.h> #include<conio.h> void add(int x,int y) { int result; result = x+y; printf(&quot;Sum of %d and %d is %d.\n\n&quot;,x,y,result); } void main() { clrscr(); add(10,15); add(55,64); getch(); } Output: sum of 10 and 15 is 25 sum of 55 and 64 is 119
  • 15. PASSING ARGUMENTS TO FUNCTION We can pass arguments to a function by following two ways: 1)Call by Value 2)Call by Reference 1) Call by Value: In Call by Value, only the values taken by the arguments are sent to the function. In call by value any changes made to the formal arguments do not cause any change to the actual arguments. 2) Call by Reference: In Call by Reference, only the addresses taken by the arguments are sent to the function. In call by reference any changes made to the formal arguments cause changes to the actual arguments.
  • 16. FUNCTION IN C SHARP To define a C# function you must declare it outside the main() block. Structure of function A function in C sharp look like this <visibility><return type><function name>(<parameter>) { statement1; statement2; statement3; }
  • 17. C# Function Parameters C# methods can accept values when a variable calls it. using System; class Program { static int Multiply(int x) //accepts only a int value { return x * 2; } static void Main() { int z = 3; Console.WriteLine(Multiply(z)); //Prints the returned value Console.Read(); } } Output: 6
  • 18. C# CALL BY REFERENCE In c# , call by reference can be done by using ref and out modifier. The difference between ref and out modifier is that a value passed to ref modifier has to be initialised before calling the method whereas this is not true for out modifier.
  • 19. By ref modifier using System; class Program { static void AddOne(ref int x) { x = x + 1; } static void Main() { int z = 8; AddOne(ref z); // variable z will be changed in function Console.WriteLine(z); Console.Read(); } } Output: 9
  • 20. BY OUT MODIFIER using System ; class Program { static int AddOne(out int x) { int y = 90; x = 19; // out variable must be initialized x = x + 1; return y + 1; } static void Main() { int z; // out variable must be unassigned be declared Console.WriteLine(AddOne(out z)); Console.WriteLine(z); Console.Read(); } } Output : 91 20
  • 21. ARRAY IN C AND C SHARP Array is a collection of same type elements under the same variable identifier referenced by index number . Arrays are of two types single dimension array and multi-dimension array. Each of these array type can be of either static array or dynamic array. Static arrays have their sizes declared from the start and the size cannot be changed after declaration. Dynamic arrays that allow you to dynamically change their size at runtime. A single dimension array is represented be a single column, whereas a multiple dimensional array would span out n columns by n rows.
  • 22. SINGLE DIMENSION ARRAYS Declaring Single Dimension Arrays Arrays can be declared using any of the data types available in C and C#.You can declare a single dimensional array as follows: <data type> array_name[size_of_array]; Initializing Single Dimension Arrays Array can be initialized in two ways: initializing on declaration <data type> array_name[size_of_array] = {element 1, element 2, ...}; Initialized by Assignment <data type>array_name[size_of_dimension1][size_of_dimension2]; array_name[0]=element1; array_name[1]=element2; . . array_name[size_of_array]=element n;
  • 23. MULTIDIMENSION ARRAY Declaring Multidimensional Arrays To declare a multidimensional array: <data type> array_name[size_of_first_dimension][size_of_second_dimension] ... Initializing Multidimensional Arrays Initialisation on declaration <data type> array_name[size_of_dimension1][size_of_second_dimension2] ... = {element 1, element 2, element 3, …}, Initialization on assignment int marks[2][4]: marks[0][0]=1; marks[0][1]=2; marks[0][2]=3; marks[0][3]=4; marks[1][0]=6; marks[1][1]=7; marks[1][2]=8;marks[1][3]=9;
  • 24. JAGGED ARRAY A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an &quot;array of arrays.&quot; A special type of array is introduced in C#. A Jagged Array is an array of an array in which the length of each array index can differ. Example: int[][] jagArray = new int[5][ ]; In the above declaration the rows are fixed in size. But columns are not specified as they can vary.
  • 25. DECLARING AND INITIALIZING JAGGED ARRAY DECLARATION int[][] jaggedArray = new int[5][]; jaggedArray[0] = new int[3]; jaggedArray[1] = new int[5]; jaggedArray[2] = new int[2]; jaggedArray[3] = new int[8]; jaggedArray[4] = new int[10]; INITIALISATION jaggedArray[0] = new int[] { 3, 5, 7, }; jaggedArray[1] = new int[] { 1, 0, 2, 4, 6 }; jaggedArray[2] = new int[] { 1, 6 }; jaggedArray[3] = new int[] { 1, 0, 2, 4, 6, 45, 67, 78 }; jaggedArray[4] = new int[] { 1, 0, 2, 4, 6, 34, 54, 67, 87, 78 };
  • 26. POINTER IN C AND C SHARP C and C# both supports the pointer concept. But in C# pointer can only be declared to hold the memory address of value types and arrays pointers are not allowed to point to a reference type or even to a structure type which contains a reference type Declaring a Pointer type The general form of declaring a pointer type is as shown below type *variable_name; Where * is known as the de-reference operator. For example the following statement int *x ; Declares a pointer variable x, which can hold the address of an int type. The reference operator (&) can be used to get the memory address of a variable. int x = 100; The &x gives the memory address of the variable x, which we can assign to a pointer variable int *ptr = & x;
  • 27. OOPS CONCEPT IN C# Key Concepts of Object Orientation * Abstraction * Encapsulation * Polymorphism * Inheritance Abstraction is the ability to generalize an object as a data type that has a specific set of characteristics and is able to perform a set of actions. Object-oriented languages provide abstraction via classes. Classes define the properties and methods of an object type. Classes are declared using the keyword class, as shown in the following example: public class Draw { // Class code. }
  • 28. ACCESS MODIFIER ACCESS MODIFIER DESCRIPTION private Only members within the same type Protected Only derived types or members of the same type Internal Only code within the same assembly. Can also be code external to object as long as it is in the same assembly. Protected internal Either code from derived type or code in the same assembly. Combination of protected OR internal. public Any code. No inheritance, external type, or external assembly restrictions.
  • 29. ENCAPSULATION Encapsulation is the procedure of covering up of data and functions into a single unit (called class). An encapsulated object is often called an abstract data type.Encapsulation provides a way to protect data from accidental corruption. POLYMORPHISM Polymorphism is the ability to use an operator or function in different ways. Polymorphism gives different meanings or functions to the operators or functions. Poly, referring to many, signifies the many uses of these operators and functions. A single function usage or an operator functioning in many ways can be called polymorphism. Polymorphism refers to codes, operations or objects that behave differently in different contexts.
  • 30. INHERITANCE Inheritance is a mechanism of reusing and extending existing classes without modifying them, thus producing hierarchical relationships between them. Inheritance is almost like embedding an object into a class. Suppose that you declare an object x of class A in the class definition of B. As a result, class B will have access to all the public data members and member functions of class A. However, in class B, you have to access the data members and member functions of class A through object x.
  • 31. ADVANTAGES OF C# OVER C Don't need to worry about header files &quot;.h&quot; Definition of classes and functions can be done in any order Pointers no longer needed (but optional) It is compiled to an intermediate language (CIL) indepently of the language it was developed or the target architecture and operating system Automatic garbage collection Classes can be defined within classes
  • 32. CONCLUSION C# gives you access to a rich set of built-in types based on the common type system as well as the .NET Framework class library. As with all object-oriented languages, in C# you leverage built-in types and class libraries to build new types for your applications.C# shares many of the features of other object-oriented languages, such as C++.