<PackageReference Include="Microsoft.CSharp" Version="4.6.0-preview4.19212.13" />

CandidateFunctionMember

namespace Microsoft.CSharp.RuntimeBinder.Semantics { internal sealed class CandidateFunctionMember { public MethPropWithInst mpwi; public TypeArray params; public byte ctypeLift; public bool fExpanded; public CandidateFunctionMember(MethPropWithInst mpwi, TypeArray params, byte ctypeLift, bool fExpanded) { this.mpwi = mpwi; this.params = params; this.ctypeLift = ctypeLift; this.fExpanded = fExpanded; } } }