Hi guys,
Just wondering if someone can help here, I asked a few people I know and also tried many ways myself aswell. Im trying to perform a property in C# which accepts an Index argument. I have the code working in VB.NET but doesn't port direct to c#. Any Ideas?

VBCODE
Code:
    Public Property Randomizer(ByVal Index As Integer) As Int64
        Get
            Return _Randomizer(Index)
        End Get
        Set(ByVal value As Int64)
            _Randomizer(Index) = value
        End Set
    End Property