SourceLocation 생성자

정의

클래스의 새 인스턴스를 SourceLocation 만듭니다.

오버로드

Name Description
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

읽기가 끝나는 소스 코드 파일의 열을 지정하는 숫자입니다.

적용 대상