using System; using System.Collections.Generic; using System.Text; namespace ComparingExample { class Program { static void Main(string[] args) { string str1 = "dog"; string str2 = "cow"; Console.WriteLine("Compare the strings 'dog' and 'cow' using CompareTo: " + str1.CompareTo(str2)); str1 = "chameleon"; Console.WriteLine("Compare the strings 'chameleon' and 'cow' using CompareTo: " + str1.CompareTo(str2)); Console.ReadLine(); } } }