CodeConstructor.ChainedConstructorArgs Property

Definition

Gets the collection of chained constructor arguments.

public:
 property System::CodeDom::CodeExpressionCollection ^ ChainedConstructorArgs { System::CodeDom::CodeExpressionCollection ^ get(); };
public System.CodeDom.CodeExpressionCollection ChainedConstructorArgs { get; }
member this.ChainedConstructorArgs : System.CodeDom.CodeExpressionCollection
Public ReadOnly Property ChainedConstructorArgs As CodeExpressionCollection

Property Value

A CodeExpressionCollection that contains the chained constructor arguments.

Remarks

When the CodeConstructor overloads another constructor of the same type, this collection contains any arguments to pass to the overloaded type constructor. To call a constructor for the current type with no arguments, set a CodeSnippetExpression containing an empty string ("") to this collection.

Applies to

See also