How can a have a property return a 2 diemsional array? I have a property called phones that needs to return a 2 diemsional array. One diemsion of the array will tell what type the phone is i.e. home or cell and the other will house the actual phone number.
Here is the code I had to return a 1 diemsional array, but I need to change it to 2.
VB Code:
  1. Private mPhones() as String
  2. Public Property Phones() As String()
  3.         Get
  4.             Return mPhones
  5.         End Get
  6.         Set(ByVal Value As String())
  7.             mPhones = Value
  8.         End Set
  9.     End Property