Write a C# Sharp program to demonstrate that compare ordinal and Compare use different sort orders

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to demonstrate that compare ordinal and Compare use different sort orders.

Expected Output :

CompareOrdinal("xyz"[1], "XYZ"[1]):                                              
   'y' is greater than 'Y'                                                       
Compare("xyz"[1], "XYZ"[1]):                                                     
   'y' is less than 'Y'

الأجوبة

using System;
using System.Globalization;
class Example30 
{
	public static void Main(String[] args) 
	{
	String strLow = "xyz";
	String strCap = "XYZ";
	String result = "equal to ";
	int x = 0;
	int pos = 1;
// The Unicode codepoint for 'b' is greater than the codepoint for 'B'.
	x = String.CompareOrdinal(strLow, pos, strCap, pos, 1);
	if (x < 0) result = "less than";
	if (x > 0) result = "greater than";
	Console.WriteLine("CompareOrdinal("{0}"[{2}], "{1}"[{2}]):", strLow, strCap, pos);
	Console.WriteLine("   '{0}' is {1} '{2}'", strLow[pos], result, strCap[pos]);
// In U.S. English culture, 'b' is linguistically less than 'B'.
	x = String.Compare(strLow, pos, strCap, pos, 1, false, new CultureInfo("en-US"));
	if (x < 0) result = "less than";
	else if (x > 0) result = "greater than";
	Console.WriteLine("Compare("{0}"[{2}], "{1}"[{2}]):", strLow, strCap, pos);
	Console.WriteLine("   '{0}' is {1} '{2}'", strLow[pos], result, strCap[pos]);
	}
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...