Removes the object at the specified index.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overrides Sub RemoveAt( _
ByVal index As Integer _
) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Attachments
Dim index As Integer
instance.RemoveAt(index) |
| C# | |
|---|
public override void RemoveAt(
int index
) |
| Managed Extensions for C++ | |
|---|
public: void RemoveAt(
int index
) override |
| C++/CLI | |
|---|
public:
void RemoveAt(
int index
) override |
Parameters
- index
- The index at which the item should be removed.
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also