public static void Main()
string miaStringa = "12345678";
char [] arrayDestinazione = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's' };
Console.WriteLine( arrayDestinazione );
miaStringa.CopyTo( 2, arrayDestinazione, 4, 6 );
Console.WriteLine( arrayDestinazione );
miaStringa = "Pippo Baudo";
miaStringa.CopyTo( 2, arrayDestinazione, 3, 9 );
Console.WriteLine( arrayDestinazione );
string strSource = "Hello\\nWorld";
char[] destination = new char[20];
strSource.CopyTo(0, destination, 0, strSource.Length);
Console.WriteLine( destination );