c# Array Part I

This is my first post, this is intended for beginners, I just hope someone will benefit from this. I'll be posting more tutorials on C# using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ArraysPartOne { class Program { static void Main(string[] args) { /* * sometimes programmers needs to use * multiple objects of the same type(value types or reference types) * so we use arrays. * Definition of array -> is a data structure that contains a number of * elements of the same type. (Professional C# 2008 Wrox) */ /* * how to declare an array? * so there are many ways on how to declare an array * just try to look below */ int[] _FirstArray = new int[5]; int[] _SecondArray = new int[2] {4,5,6}; int[] _ThirdArray = new int[] { 4, 5, 6 }; int[] _FourthArray = { 6,7,8}; // end of declaring or initilizing an array //start of our sample array try { Console.WriteLine("Array Sample Part I"); int intInputNumber =0; int intCounter =0; Console.WriteLine("How many number to want to input"); intInputNumber = int.Parse (Console.ReadLine()); int [] _UserArray = new int[intInputNumber]; do { Console.WriteLine( string.Format ("Input numbers at index[{0}]",intCounter )); _UserArray[intCounter] = int.Parse(Console.ReadLine()); intCounter++; }while (intCounter output

Tags

Comments

Submitted byramchetryon Sun, 10/24/2010 - 07:04

Just Born today.. intending to learn cyber security. please help.

Add new comment