I have a c# statement:

public Vehicle this[int indexer]
{
Get
{
do stuff
}
}




How can I write this in vb.net? exactly what does that C# statement do? does it override the standard property "this" reference?


kind regards
Henrik