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 2b74a47 commit 1433742Copy full SHA for 1433742
src/System.Linq.Dynamic.Core/DynamicGetMemberBinder.cs
@@ -17,7 +17,7 @@ internal class DynamicGetMemberBinder : GetMemberBinder
17
private static readonly MethodInfo DynamicGetMemberMethod = typeof(DynamicGetMemberBinder).GetMethod(nameof(GetDynamicMember))!;
18
private readonly ConcurrentDictionary<Tuple<Type, string, bool>, DynamicMetaObject> _metaObjectCache = new();
19
20
- public DynamicGetMemberBinder(string name, ParsingConfig? config) : base(name, config?.IsCaseSensitive != true)
+ internal DynamicGetMemberBinder(string name, ParsingConfig? config) : base(name, config?.IsCaseSensitive != true)
21
{
22
}
23
0 commit comments