Language

Expression.DebugInfo(SymbolDocumentInfo, Int32, Int32, Int32, Int32) メソッド

定義

指定したスパンを持つ DebugInfoExpression を作成します。

public:
 static System::Linq::Expressions::DebugInfoExpression ^ DebugInfo(System::Linq::Expressions::SymbolDocumentInfo ^ document, int startLine, int startColumn, int endLine, int endColumn);
public static System.Linq.Expressions.DebugInfoExpression DebugInfo(System.Linq.Expressions.SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn);
static member DebugInfo : System.Linq.Expressions.SymbolDocumentInfo * int * int * int * int -> System.Linq.Expressions.DebugInfoExpression
Public Shared Function DebugInfo (document As SymbolDocumentInfo, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer) As DebugInfoExpression

パラメーター

document
SymbolDocumentInfo

ソース ファイルを表す SymbolDocumentInfo 。

startLine
Int32

この DebugInfoExpressionの開始行。 0 より大きくなければなりません。

startColumn
Int32

この DebugInfoExpressionの開始列。 0 より大きくなければなりません。

endLine
Int32

この DebugInfoExpressionの終了行。 開始行以上である必要があります。

endColumn
Int32

この DebugInfoExpressionの終了列。 終了行が開始行と同じ場合は、開始列以上である必要があります。 いずれの場合も、0 より大きくする必要があります。

返品

DebugInfoExpressionのインスタンス。

適用対象