Base:
property
Type
System.Linq.Expressions.Expression.Type
1 override of Type
System.Core (1)
Microsoft\Scripting\Ast\ConditionalExpression.cs (1)
140public sealed override Type Type {
6 references to Type
System.Core (6)
Microsoft\Scripting\Ast\ConditionalExpression.cs (2)
67/// <returns>The <see cref="Type"/> that represents the static type of the expression.</returns> 115return Expression.Condition(test, ifTrue, ifFalse, Type);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
94public Type Type { get { return _node.Type; } }
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (2)
41EmitExpressionAsType(node.IfTrue, node.Type, flags); 53EmitExpressionAsType(node.IfFalse, node.Type, flags);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
330expr = Expression.Condition(test.Node, ifTrue.Node, ifFalse.Node, node.Type);