<PackageReference Include="Microsoft.CSharp" Version="4.6.0-rc1.19456.4" />

CSharpBinderFlags

public enum CSharpBinderFlags
using System; using System.ComponentModel; namespace Microsoft.CSharp.RuntimeBinder { [Flags] [EditorBrowsable(EditorBrowsableState.Never)] public enum CSharpBinderFlags { None = 0, CheckedContext = 1, InvokeSimpleName = 2, InvokeSpecialName = 4, BinaryOperationLogical = 8, ConvertExplicit = 16, ConvertArrayIndex = 32, ResultIndexed = 64, ValueFromCompoundAssignment = 128, ResultDiscarded = 256 } }