Overview:
In this article i would like to publish an article Reading a Values into an array through Foreach Loop in c#.Net.
Description:
Array can be defined as a collection of similar dataitems.In C#.Net array act as a ReferenceType.We can access the elements of an array using index values.
Syntax:
DataType[] NameOf The Array=new DataType[size];
E.g:
int[] a=new int[5];
(or)
int[] a=new int[]{12,10,1,3,5};
Note:
Syntax:
Foreach(SourceDatatype variablename in Sourcevariablename)
{
-----------------------
}
Program:
In this article i would like to publish an article Reading a Values into an array through Foreach Loop in c#.Net.
Description:
Array can be defined as a collection of similar dataitems.In C#.Net array act as a ReferenceType.We can access the elements of an array using index values.
Syntax:
DataType[] NameOf The Array=new DataType[size];
E.g:
int[] a=new int[5];
(or)
int[] a=new int[]{12,10,1,3,5};
Note:
- If we Declare the size of the array it can take exactly that size number of values.
- If we are not declare the size of the array then we can accommodate n number of values.
Syntax:
Foreach(SourceDatatype variablename in Sourcevariablename)
{
-----------------------
}
Program:
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
namespace
arr123
{
class Program
{
static void Main(string[]
args)
{
int[]
a = new int[5];
Console.WriteLine("Enter {0} elements of AN Array",a.Length);
int
m = 0;
foreach
(int i in a)
{
if
(m <=a.Length-1)
{
a[m] = Convert.ToInt32(Console.ReadLine());
m += 1;
}
}
Console.WriteLine("Elements In An Array");
foreach
(int j in a)
{
Console.WriteLine(j);
}
Console.WriteLine("Keep Visiting this Blog.http://www.pv999.blogspot.com");
Console.ReadLine();
}
}
}
Output:
No comments:
Post a Comment