CodeTypeDeclarationCollection.Add(CodeTypeDeclaration) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Parameters
- value
- CodeTypeDeclaration
The CodeTypeDeclaration object to add.
Returns
The index at which the new element was inserted.
Examples
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"))
Applies to
See also
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.