Join Arrays and strip words
Code

//string_handler.cs

using System;
using System.Windows.Forms;
namespace stringhandler
{
class stringarray
{
public string join_array()
{
char[] out_char = { 'P', 'a', 's', 's', 'w', 'o','r', 'd', ' ', 'a', 'd','m','i',' ', '1','2','3','4'};
string s2 = new string(out_char);
string s1 = new string(out_char, 8,4);
Console.WriteLine(" Array Joined : " + " from "+ s2);
Console.WriteLine(" Word stripped : " + s1 + " from "+ s2);
return s1;
}
}
class test
{
/// The main entry point for the application.
[STAThread]
static void Main( string[] args )
{
stringarray ss = new stringarray();
ss.join_array();
} // end method Main
} // end class stringhandler
}