I am trying to convert some old legacy from VB to C# but I am running into an issue with a particular area regarding dual parentheses
Dim _atts As List(Of String()) = List(Of String())
Dim tmp() As String = Me._atts.Item(AttNo)(ValNo).Split(_SVM)
I don't understand how I would write the (attNo)(valNo) in C#
I have tried the following but with no luck
List<string[]> _atts = new List<string[]>();
string[] tmp = this._atts[attNo](valNo).Split(_SVM);
Can someone enlighten me as to what the dual parenthesis actually do in VB?
Thanks