CodeLinePragma 类

定义

表示特定文件内的特定位置。

public ref class CodeLinePragma
public class CodeLinePragma
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeLinePragma
type CodeLinePragma = class
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeLinePragma = class
Public Class CodeLinePragma
继承
CodeLinePragma
属性

示例

下面的代码示例演示如何使用 CodeLinePragma 类来引用源文件的特定行。

// 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)

注解

CodeLinePragma 可用于表示文件中的特定位置。 此类对象通常在编译后通过调试工具使用,以存储关联代码元素的位置,例如与编译器警告和错误关联的位置引用。

构造函数

CodeLinePragma()

初始化 CodeLinePragma 类的新实例。

CodeLinePragma(String, Int32)

初始化 CodeLinePragma 类的新实例。

属性

FileName

获取或设置关联文件的名称。

LineNumber

获取或设置关联引用的行号。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于