Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,933 questions

51,870 answers

573 users

How to use string.CompareTo() to compare two strings in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string s1 = "abc";
            string s2 = "abc";
            int n = s1.CompareTo(s2); // 0 : s1 = s2
            Console.WriteLine(n);

            s1 = "abc";
            s2 = "Abc";
            n = s1.CompareTo(s2); // -1 = s1 < s2
            Console.WriteLine(n);

            s1 = "Abc";
            s2 = "abc";
            n = s1.CompareTo(s2); // 1 = s1 > s2 
            Console.WriteLine(n);

            s1 = "a";
            s2 = "A";
            n = s1.CompareTo(s2); // -1 : s1 < s2
            Console.WriteLine(n);

            s1 = "b";
            s2 = "a";
            n = s1.CompareTo(s2); // 1 : s1 > s2
            Console.WriteLine(n);
        }
    }
}


/*
run:
     
0
-1
1
-1
1
 
*/

 



answered Dec 20, 2016 by avibootz

Related questions

1 answer 160 views
1 answer 159 views
2 answers 248 views
1 answer 161 views
1 answer 150 views
1 answer 169 views
...