We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b766d70 commit af59879Copy full SHA for af59879
ExpressionEvaluator.cs
@@ -379,7 +379,7 @@ public BindingFlags InstanceBindingFlag
379
{
380
BindingFlags flag = BindingFlags.Default | BindingFlags.Public | BindingFlags.Instance;
381
382
- if (CaseSensitiveEvaluation)
+ if (!CaseSensitiveEvaluation)
383
flag |= BindingFlags.IgnoreCase;
384
385
return flag;
@@ -392,7 +392,7 @@ public BindingFlags StaticBindingFlag
392
393
BindingFlags flag = BindingFlags.Default | BindingFlags.Public | BindingFlags.Static;
394
395
396
397
398
0 commit comments