C# এ স্ট্রিং তুলনা করতে, compare() পদ্ধতি ব্যবহার করুন। এটি দুটি স্ট্রিং তুলনা করে এবং নিম্নলিখিত পূর্ণসংখ্যার মানগুলি প্রদান করে −
If str1 is less than str2, it returns -1. If str1 is equal to str2, it returns 0. If str1 is greater than str2, it returns 1.
String.compare() পদ্ধতিতে দুটি স্ট্রিং সেট করুন এবং তাদের তুলনা করুন −
string.Compare(string1, string2);
উদাহরণ
C# এ দুটি স্ট্রিং তুলনা করার জন্য আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন।
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { string string1 = null; string string2 = null; string1 = "amit"; string2 = "Amit"; int myOutput = 0; myOutput = string.Compare(string1, string2); Console.WriteLine(myOutput.ToString()); Console.ReadLine(); } } }
আউটপুট
-1