You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ The implicit conversion between a `string` and `EnumValue<TEnum>` make this poss
102
102
103
103
If you need to allow for case-insensitive comparison then simply use `EnumValueCaseIgnored<TEnum>` instead.
104
104
105
-
The performance is outstanding as it uses an expression tree for case-sensitive matching and a dictionary for case-insensitive.
105
+
The performance is outstanding as it uses the length of the names to build a tree in order to parse values and uses an expression tree instead of calling `.ToString()` on the value.
0 commit comments