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
Spolupráca s nami v službe GitHub
Zdroj tohto obsahu nájdete v službe GitHub, kde môžete vytvárať a skúmať problémy a žiadosti o prijatie zmien. Ďalšie informácie nájdete v našom sprievodcovi prispievateľom.