CS_0011_Array3
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{
string[] names = new string[] { "Mathi", "Sujithra", "Suraj", "Shakthi" };
Console.WriteLine(names[2].ToString());
foreach (string name in names)
{
Console.WriteLine(name);
}
Console.ReadLine();
}
}
}
Comments
Post a Comment