CodeTypeReferenceCollection.Add Method

Definition

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)

Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs

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 -> int
Public Function Add (value As CodeTypeReference) As Integer

Parameters

Returns

The index at which the new element was inserted.

Examples

// Adds a CodeTypeReference to the collection.
collection->Add( gcnew CodeTypeReference( bool::typeid ) );
// 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)

Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs

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 -> unit
Public 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)

Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs
Source:
CodeTypeReferenceCollection.cs

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 -> unit
Public Sub Add (value As Type)

Parameters

value
Type

The data type for which to add a CodeTypeReference to the collection.

Applies to