Expression.DebugInfo Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a DebugInfoExpression with the specified span.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function DebugInfo ( _ document As SymbolDocumentInfo, _ startLine As Integer, _ startColumn As Integer, _ endLine As Integer, _ endColumn As Integer _ ) As DebugInfoExpression
Parameters
- document
- Type: System.Linq.Expressions.SymbolDocumentInfo
The SymbolDocumentInfo that represents the source file.
- startLine
- Type: System.Int32
The start line of this DebugInfoExpression. Must be greater than 0.
- startColumn
- Type: System.Int32
The start column of this DebugInfoExpression. Must be greater than 0.
- endLine
- Type: System.Int32
The end line of this DebugInfoExpression. Must be greater or equal than the start line.
- endColumn
- Type: System.Int32
The end column of this DebugInfoExpression. If the end line is the same as the start line, it must be greater or equal than the start column. In any case, must be greater than 0.
Show: