CodeTypeReferenceCollection.Add 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 CodeTypeReference to the collection.
Overloads
| Add(CodeTypeReference) | Adds the specified CodeTypeReference to the collection. | 
| Add(String) | Adds a CodeTypeReference to the collection using the specified data type name. | 
| Add(Type) | Adds a CodeTypeReference to the collection using the specified data type. | 
Add(CodeTypeReference)
Adds the specified CodeTypeReference to the collection.
public:
 int Add(System::CodeDom::CodeTypeReference ^ value);public int Add(System.CodeDom.CodeTypeReference value);member this.Add : System.CodeDom.CodeTypeReference -> intPublic Function Add (value As CodeTypeReference) As IntegerParameters
- value
- CodeTypeReference
The CodeTypeReference to add.
Returns
The index at which the new element was inserted.
Examples
// Adds a CodeTypeReference to the collection.
collection.Add( new CodeTypeReference(typeof(bool)) );
' Adds a CodeTypeReference to the collection.
collection.Add(New CodeTypeReference(GetType(Boolean)))
See also
Applies to
Add(String)
Adds a CodeTypeReference to the collection using the specified data type name.
public:
 void Add(System::String ^ value);public void Add(string value);member this.Add : string -> unitPublic Sub Add (value As String)Parameters
- value
- String
The name of a data type for which to add a CodeTypeReference to the collection.
Applies to
Add(Type)
Adds a CodeTypeReference to the collection using the specified data type.
public:
 void Add(Type ^ value);public void Add(Type value);member this.Add : Type -> unitPublic Sub Add (value As Type)Parameters
- value
- Type
The data type for which to add a CodeTypeReference to the collection.