79251540

Date: 2024-12-04 14:27:53
Score: 0.5
Natty:
Report link
Dim lststrSort As New List(Of String) From {"D", "d"}
lststrSort.Sort()

print(lststrSort) ' {d, D}
print("d" < "D") '  False
print(String.Compare("d", "D") < 0) ' True

String.Compare and < work differntly, sorting lists is consistant with String.Compare, but not with <.

I have option compare Binary on.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: awi2b