ParserErrorCollection.Add(ParserError) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
向集合中添加一个值。
public:
int Add(System::Web::ParserError ^ value);
public int Add (System.Web.ParserError value);
member this.Add : System.Web.ParserError -> int
Public Function Add (value As ParserError) As Integer
参数
- value
- ParserError
要添加到集合中的 ParserError 值。
返回
该值在集合中的索引;否则,如果集合中已存在该值,则为 -1。
示例
下面的代码示例演示如何向对象添加 ParserError 对象 ParserErrorCollection 。
// Add a ParserError to the collection.
collection.Add(new ParserError("ErrorName", "Path", 1));
' Add a ParserError to the collection.
collection.Add(New ParserError("ErrorName", "Path", 1))
注解
使用该方法 Add 将现有 ParserError 对象添加到集合。 不能多次将同一 ParserError 对象添加到集合中。 使用ParserError集合中已有的对象调用Add该方法时,添加失败并返回 -1。
若要向集合中添加多个对象,请使用 AddRange 该方法。