using System.Collections;
public static void Main()
string[] uri = new string[] { "one", "two", "three", "four", "five", "six" };
string[] copy = new string[uri.Length-1];
Console.WriteLine("Hello World");
Console.WriteLine(String.Join(",", uri));
Array.Copy(uri, 1, copy, 0, copy.Length);
Console.WriteLine(String.Join(",", copy));
Hashtable ht = new Hashtable() { { "arg1", "some text" } , {"arg2", "Some other text" }, {"arg3", "final text" } };
string s = Smart.Format("{arg1} is {arg2} after {arg3}", ht);
Console.WriteLine(ht.Contains("Arg1"));