Learn .net program examples and full course | .net certification at Cegonsoft

Discussion in 'Web Programming' started by jonathanp198, Sep 2, 2011.

Learn .net program examples and full course | .net certification at Cegonsoft
  1. Unread #1 - Sep 2, 2011 at 8:10 AM
  2. jonathanp198
    Joined:
    Aug 22, 2011
    Posts:
    7
    Referrals:
    0
    Sythe Gold:
    0

    jonathanp198 Newcomer

    Learn .net program examples and full course | .net certification at Cegonsoft

    A .net program can be developed using Visual Studio .NET.
    Visual Studio is a complete suite of tools for building both Windows and Web based applications. In addition to building high-performing desktop applications, we can use Visual Studio's powerful component-based development tools and other technologies to simplify team-based design, development, and deployment of enterprise solutions.
    As it is based on the .net Framework, it supports various Programming Languages like VB & C# etc.
    Let’s take an Example:-
    Example of Arrays in C#.
    There are three types of arrays in C#.
    • Single Dimensional
    • Multi Dimensional
    • Jagged
    Example:
    class TestArraysClass
    {
    static void Main()
    {
    // Declare a single-dimensional array
    int[] array1 = new int[5];

    // Declare and set array element values
    int[] array2 = new int[] { 1, 3, 5, 7, 9 };

    // Alternative syntax
    int[] array3 = { 1, 2, 3, 4, 5, 6 };

    // Declare a two dimensional array
    int[,] multiDimensionalArray1 = new int[2, 3];

    // Declare and set array element values
    int[,] multiDimensionalArray2 = { { 1, 2, 3 }, { 4, 5, 6 } };

    // Declare a jagged array
    int[][] jaggedArray = new int[6][];

    // Set the values of the first array in the jagged array structure
    jaggedArray[0] = new int[4] { 1, 2, 3, 4 };
    }
    }
    .........

    We provide Dot Net Certification after completion of Course.

    Visit Us At: www.cegonsoft.com
    Cegonsoft
     
< Advertise4you Post2Host [Offshore Hosting]Official 2011!|Advertise your site for free | Web Designer need for basic website project >

Users viewing this thread
1 guest


 
 
Adblock breaks this site