In Visual Basic 6 you can set up a user defined type and declare an array as that type. How does this get accomplished in C#? Do I create a dataset to hold the values I need? ArrayList?

Code:
Type TypeGLCash
    CshGLNo As String
    CshGLAmt As String
    CshTicket As String
End Type

Private GLCash() As TypeGLCash