SourceLocation コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SourceLocation クラスの新しいインスタンスを作成します。
オーバーロード
SourceLocation(String, Int32) |
ソース コード ファイル名とそのファイルにおける行番号を指定する SourceLocation クラスの新しいインスタンスを作成します。 |
SourceLocation(String, Int32, Int32, Int32, Int32) |
ソース コード ファイル名とそのファイルにおけるデータ範囲のパラメーターを指定する SourceLocation クラスの新しいインスタンスを作成します。 |
SourceLocation(String, Int32)
ソース コード ファイル名とそのファイルにおける行番号を指定する SourceLocation クラスの新しいインスタンスを作成します。
public:
SourceLocation(System::String ^ fileName, int line);
public SourceLocation (string fileName, int line);
new System.Activities.Debugger.SourceLocation : string * int -> System.Activities.Debugger.SourceLocation
Public Sub New (fileName As String, line As Integer)
パラメーター
- fileName
- String
ソース コード ファイル。
- line
- Int32
ソース コード ファイルの行番号。
適用対象
SourceLocation(String, Int32, Int32, Int32, Int32)
ソース コード ファイル名とそのファイルにおけるデータ範囲のパラメーターを指定する SourceLocation クラスの新しいインスタンスを作成します。
public:
SourceLocation(System::String ^ fileName, int startLine, int startColumn, int endLine, int endColumn);
public SourceLocation (string fileName, int startLine, int startColumn, int endLine, int endColumn);
new System.Activities.Debugger.SourceLocation : string * int * int * int * int -> System.Activities.Debugger.SourceLocation
Public Sub New (fileName As String, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer)
パラメーター
- fileName
- String
ソース コード ファイルの名前。
- startLine
- Int32
読み取りを開始するソース コード ファイルの行番号。
- startColumn
- Int32
読み取りを開始するソース コード ファイルの列番号。
- endLine
- Int32
読み取りを終了するソース コード ファイルの行番号。
- endColumn
- Int32
読み取りを終了するソース コード ファイルの列番号。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET