internal static void Deconstruct(this DynamicExpression expr, out ExpressionType nodeType, out Type type, out BinderTypes binderType) =>
 (nodeType, type, binderType) = (
Beispiel #2
0
 internal static void Deconstruct(this DynamicExpression expr, out ExpressionType nodeType, out Type type, out BinderTypes binderType)
 {
     (nodeType, type, binderType) = (
         expr.VirtualNodeType(),
         expr.Type,
         expr.Binder.BinderType()
         );
 }