using System; using System.Linq; public class Test { public static void Main() { var s = "cC-Cc"; var result = string.Join("-", s.Split('-').Select((x,i) => i % 2 == 0 ? x.ToLower() :x.ToUpper())); Console.WriteLine(result); } }