using System;
using System.Collections.Specialized;
public class Program
{
public static void Main()
{
StringCollection sc = new StringCollection();
sc.Add("c#");
sc.Add("c++");
sc.Add("java");
sc.Add("php");
sc.Add("python");
String[] arr = new String[sc.Count + 1];
arr[0] = "javascript";
sc.CopyTo(arr, 1);
foreach (string s in arr) {
Console.WriteLine(s);
}
}
}
/*
run:
javascript
c#
c++
java
php
python
*/