Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets or sets the constructor at the specified index.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Default Property Item ( _
index As Integer _
) As ConstructorInfo
Get
Set
'Usage
Dim instance As VirtualTypeBuilder..::..ConstructorInfoCollection
Dim index As Integer
Dim value As ConstructorInfo
value = instance(index)
instance(index) = value
public ConstructorInfo this[
int index
] { get; set; }
public:
property ConstructorInfo^ default[int index] {
ConstructorInfo^ get (int index);
void set (int index, ConstructorInfo^ value);
}
member Item : ConstructorInfo with get, set
JScript does not support indexed properties.
Parameters
- index
Type: System.Int32
The 0-based index of the element to get or set.
Property Value
Type: System.Reflection.ConstructorInfo
The ConstructorInfo at the specified index.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentException | index is less than 0. -or- index is equal to or greater than Count. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
VirtualTypeBuilder.ConstructorInfoCollection Class