19 references to IsByRef
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
ExpressionTrees\Sources\ExprLambdaUtils.vb (1)
275If node.IsByRef Then
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
351if (paramExp != null && paramExp.IsByRef)
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1310If arg IsNot Nothing AndAlso arg.IsByRef Then
System.Linq.Expressions (16)
System\Dynamic\DynamicObject.cs (1)
466if (variable.IsByRef)
System\Linq\Expressions\BlockExpression.cs (1)
1076if (v.IsByRef)
System\Linq\Expressions\CatchBlock.cs (1)
143else if (variable.IsByRef)
System\Linq\Expressions\Compiler\CompilerScope.Storage.cs (1)
52_local = compiler.GetLocal(variable.IsByRef ? variable.Type.MakeByRefType() : variable.Type);
System\Linq\Expressions\Compiler\DelegateHelpers.cs (1)
110return mo.Expression is ParameterExpression pe && pe.IsByRef;
System\Linq\Expressions\Compiler\LambdaCompiler.Address.cs (1)
87if (node.IsByRef)
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (2)
720if (variable.IsByRef) 767if (node.IsByRef)
System\Linq\Expressions\Compiler\LambdaCompiler.Lambda.cs (1)
178result[i] = p.IsByRef ? p.Type.MakeByRefType() : p.Type;
System\Linq\Expressions\Compiler\VariableBinder.cs (1)
260if (node.IsByRef)
System\Linq\Expressions\DebugViewWriter.cs (1)
241if (variable.IsByRef)
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
378public bool IsByRef => _node.IsByRef;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
279if (node.IsByRef)
System\Linq\Expressions\LambdaExpression.cs (2)
867typeArgs[i] = param.IsByRef ? param.Type.MakeByRefType() : param.Type; 951if (pex.IsByRef)
System\Linq\Expressions\TypeBinaryExpression.cs (1)
87if (parameter != null && !parameter.IsByRef)