CompilerErrorCollection.Add(CompilerError) 方法

定义

将指定的 CompilerError 对象添加到错误集合中。

public:
 int Add(System::CodeDom::Compiler::CompilerError ^ value);
public int Add (System.CodeDom.Compiler.CompilerError value);
member this.Add : System.CodeDom.Compiler.CompilerError -> int
Public Function Add (value As CompilerError) As Integer

参数

value
CompilerError

要添加的 CompilerError 对象。

返回

新元素位置处插入的索引。

示例

以下示例演示如何使用 Add 方法将 对象添加到 CompilerErrorCompilerErrorCollection

// Adds a CompilerError to the collection.
collection->Add( gcnew CompilerError( "Testfile::cs",5,10,"CS0001","Example error text" ) );
// Adds a CompilerError to the collection.
collection.Add( new CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text") );
' Adds a CompilerError to the collection.
collection.Add(New CompilerError("Testfile.cs", 5, 10, "CS0001", "Example error text"))

适用于

另请参阅