Udostępnij za pośrednictwem


CodeLinePragma Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy CodeLinePragma.

Przeciążenia

CodeLinePragma()

Inicjuje nowe wystąpienie klasy CodeLinePragma.

CodeLinePragma(String, Int32)

Inicjuje nowe wystąpienie klasy CodeLinePragma.

CodeLinePragma()

Źródło:
CodeLinePragma.cs
Źródło:
CodeLinePragma.cs
Źródło:
CodeLinePragma.cs

Inicjuje nowe wystąpienie klasy CodeLinePragma.

public:
 CodeLinePragma();
public CodeLinePragma ();
Public Sub New ()

Uwagi

Jeśli używasz tego konstruktora, należy również ustawić LineNumber właściwości i FileName .

Dotyczy

CodeLinePragma(String, Int32)

Źródło:
CodeLinePragma.cs
Źródło:
CodeLinePragma.cs
Źródło:
CodeLinePragma.cs

Inicjuje nowe wystąpienie klasy CodeLinePragma.

public:
 CodeLinePragma(System::String ^ fileName, int lineNumber);
public CodeLinePragma (string fileName, int lineNumber);
new System.CodeDom.CodeLinePragma : string * int -> System.CodeDom.CodeLinePragma
Public Sub New (fileName As String, lineNumber As Integer)

Parametry

fileName
String

Nazwa pliku skojarzonego.

lineNumber
Int32

Numer wiersza do przechowywania odwołania.

Przykłady

W poniższym przykładzie kodu pokazano użycie CodeLinePragma klasy w celu odwołania się do określonego wiersza pliku źródłowego.

// Creates a CodeLinePragma that references line 100 of the file "example.cs".
CodeLinePragma^ pragma = gcnew CodeLinePragma( "example.cs",100 );
// Creates a CodeLinePragma that references line 100 of the file "example.cs".
CodeLinePragma pragma = new CodeLinePragma("example.cs", 100);
' Creates a CodeLinePragma that references line 100 of the file "example.cs".
Dim pragma As New CodeLinePragma("example.cs", 100)

Dotyczy