Contact: aviboots(AT)netvision.net.il
39,919 questions
51,852 answers
573 users
using System; class Program { static void Main() { string s = "c#-programming"; string firstThree = s.Substring(0, 3); Console.WriteLine(firstThree); } } /* run: c#- */