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
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.