CodeTypeMemberCollection.Add(CodeTypeMember) 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 a CodeTypeMember with the specified value to the collection.
public:
int Add(System::CodeDom::CodeTypeMember ^ value);
public int Add (System.CodeDom.CodeTypeMember value);
member this.Add : System.CodeDom.CodeTypeMember -> int
Public Function Add (value As CodeTypeMember) As Integer
Parameters
- value
- CodeTypeMember
The CodeTypeMember to add.
Returns
The index at which the new element was inserted.
Examples
The following code example demonstrates how to add a CodeTypeMember object to a CodeTypeMemberCollection instance.
// Adds a CodeTypeMember to the collection.
collection->Add( gcnew CodeMemberField( "System.String","TestStringField" ) );
// Adds a CodeTypeMember to the collection.
collection.Add( new CodeMemberField("System.String", "TestStringField") );
' Adds a CodeTypeMember to the collection.
collection.Add(New CodeMemberField("System.String", "TestStringField"))
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.