2 overrides of EndColumn
System.Linq.Expressions (2)
System\Linq\Expressions\DebugInfoExpression.cs (2)
116
public override int
EndColumn
=> _endColumn;
141
public override int
EndColumn
=> 0;
3 references to EndColumn
System.Linq.Expressions (3)
System\Linq\Expressions\DebugViewWriter.cs (1)
1145
Out($".DebugInfo({node.Document.FileName}: {node.StartLine}, {node.StartColumn} - {node.EndLine}, {node.
EndColumn
})");
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
118
public int EndColumn => _node.
EndColumn
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
381
Out($"<DebugInfo({node.Document.FileName}: {node.StartLine}, {node.StartColumn}, {node.EndLine}, {node.
EndColumn
})>");