Good day!
Here I found out that in C # there are two very similar enumerated types: StringComparer и StringComparison
. I wonder if they have any significant differences and areas of application? Are they aliases like string И String
, for example? For example:
a) StringComparer a = StringComparer.OrdinalIgnoreCase; b) StringComparison b = StringComparison.OrdinalIgnoreCase;
Is there any difference?
abstract class
, and the second isenum
? o0 - eigenein