CodeConstructor.ChainedConstructorArgs Property
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.
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.