CodeTypeDeclarationCollection.Add(CodeTypeDeclaration) Método
Definição
Adiciona o objeto CodeTypeDeclaration especificado à coleção.Adds the specified CodeTypeDeclaration object to the collection.
public:
int Add(System::CodeDom::CodeTypeDeclaration ^ value);
public int Add (System.CodeDom.CodeTypeDeclaration value);
member this.Add : System.CodeDom.CodeTypeDeclaration -> int
Public Function Add (value As CodeTypeDeclaration) As Integer
Parâmetros
- value
- CodeTypeDeclaration
O objeto CodeTypeDeclaration a ser adicionado.The CodeTypeDeclaration object to add.
Retornos
O índice no qual o novo elemento foi inserido.The index at which the new element was inserted.
Exemplos
O exemplo a seguir demonstra como usar o Add método para adicionar um CodeTypeDeclaration objeto a um CodeTypeDeclarationCollection .The following example demonstrates how to use the Add method to add a CodeTypeDeclaration object to a CodeTypeDeclarationCollection.
// Adds a CodeTypeDeclaration to the collection.
collection->Add( gcnew CodeTypeDeclaration( "TestType" ) );
// Adds a CodeTypeDeclaration to the collection.
collection.Add( new CodeTypeDeclaration("TestType") );
' Adds a CodeTypeDeclaration to the collection.
collection.Add(New CodeTypeDeclaration("TestType"))