using System;
namespace ConsoleApplication_C_Sharp
{
static class Program
{
static void Main()
{
string[] arr = { "vb.net", "java", "php", "python", "c#" };
string[] arr_copy = new string[arr.Length];
Array.Copy(arr, arr_copy, arr.Length);
foreach (string element in arr_copy)
Console.WriteLine(element);
}
}
}
/*
run:
vb.net
java
php
python
c#
*/