Embed presentation
Downloaded 21 times










![ARRAY
Declaration
int[] 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;](https://image.slidesharecdn.com/csharp-160517151046/75/C-sharp-11-2048.jpg)


The document discusses an agenda covering the .NET platform and Visual Studio. It will cover the .NET framework, an introduction to C#, object-oriented programming in C#, assemblies and modules, and sample applications. It then discusses the .NET platform, Visual Studio IDE, execution in .NET, and code conversion to C#. Key aspects of C# like components, data types, arrays, and assemblies are defined.
Overview of the agenda including topics on Microsoft .NET, C#, OOP, Assemblies, and sample applications.
Highlights of the .NET platform, focusing on components, OOP principles, GUI, and web development.
Discussion of Visual Studio as a comprehensive IDE supporting various development tasks.
An introduction to the .NET Framework, emphasizing its role in application development.
Describes the execution model within the .NET framework, outlining the process of executing applications.
Explores methods used for converting code between different programming languages.
Details on C#, its development background, event-driven features, and application areas including desktop and web.
Key components of C# including namespaces, classes, methods, properties, and exception handling.
Overview of C# data types and their corresponding .NET Framework types, including bool, int, and string.
Guidelines on declaring and using different types of arrays in C#, including single, multi-dimensional, and jagged arrays.
Definition of assemblies in .NET, which include EXEs and DLLs, and their role in application development.










![ARRAY
Declaration
int[] 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;](https://image.slidesharecdn.com/csharp-160517151046/75/C-sharp-11-2048.jpg)

