Contact: aviboots(AT)netvision.net.il
42,236 questions
54,956 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { char[] arr = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g' }; Console.WriteLine(arr, 2, 4); } } } /* run: cdef */