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.
2 parents b766d70 + af59879 commit 068dac7Copy full SHA for 068dac7
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