नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Comparer.Ordinal(x as any, y as any) as number
About
Returns a comparer function which uses Ordinal rules to compare the provided values x and y.
Example 1
Using Ordinal rules, compare if "encyclopædia" and "encyclopaedia" are equivalent. Note these are equivalent using Comparer.FromCulture("en-US").
A comparer function accepts two arguments and returns -1, 0, or 1 based on whether the first value is less than, equal to, or greater than the second.
Usage
Comparer.Equals(Comparer.Ordinal, "encyclopædia", "encyclopaedia")
Output
false