CompilerError 构造函数

定义

初始化 CompilerError 类的新实例。

重载

CompilerError()

初始化 CompilerError 类的新实例。

CompilerError(String, Int32, Int32, String, String)

使用指定的文件名、行、列、错误号和错误文本初始化 CompilerError 类的新实例。

CompilerError()

Source:
CompilerError.cs
Source:
CompilerError.cs
Source:
CompilerError.cs

初始化 CompilerError 类的新实例。

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

适用于

CompilerError(String, Int32, Int32, String, String)

Source:
CompilerError.cs
Source:
CompilerError.cs
Source:
CompilerError.cs

使用指定的文件名、行、列、错误号和错误文本初始化 CompilerError 类的新实例。

public:
 CompilerError(System::String ^ fileName, int line, int column, System::String ^ errorNumber, System::String ^ errorText);
public CompilerError (string fileName, int line, int column, string errorNumber, string errorText);
new System.CodeDom.Compiler.CompilerError : string * int * int * string * string -> System.CodeDom.Compiler.CompilerError
Public Sub New (fileName As String, line As Integer, column As Integer, errorNumber As String, errorText As String)

参数

fileName
String

编译器遇到错误时正在编译的文件的文件名。

line
Int32

错误源所在的行。

column
Int32

错误源所在的列。

errorNumber
String

错误的错误号。

errorText
String

错误消息文本。

适用于