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
Berkolaborasi dengan kami di GitHub
Sumber untuk konten ini dapat ditemukan di GitHub, yang juga dapat Anda gunakan untuk membuat dan meninjau masalah dan menarik permintaan. Untuk informasi selengkapnya, lihat panduan kontributor kami.