CodeCatchClauseCollection.Add(CodeCatchClause) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen CodeCatchClause nesneyi koleksiyona ekler.
public:
int Add(System::CodeDom::CodeCatchClause ^ value);
public int Add (System.CodeDom.CodeCatchClause value);
member this.Add : System.CodeDom.CodeCatchClause -> int
Public Function Add (value As CodeCatchClause) As Integer
Parametreler
- value
- CodeCatchClause
CodeCatchClause Eklenecek nesne.
Döndürülenler
Yeni öğenin eklendiği dizin.
Örnekler
Aşağıdaki örnekte, örneğe nasıl CodeCatchClause nesne ekleneceği gösterilmektedir CodeCatchClauseCollection .
// Adds a CodeCatchClause to the collection.
collection->Add( gcnew CodeCatchClause( "e" ) );
// Adds a CodeCatchClause to the collection.
collection.Add( new CodeCatchClause("e") );
' Adds a CodeCatchClause to the collection.
collection.Add(New CodeCatchClause("e"))