Mynx
New member
- Joined
- Mar 6, 2011
- Messages
- 2
- Programming Experience
- 3-5
Hello eveyone,
I have the followig problem; i want to make a class with a private field as a 2-dimensional array, where it's dimension is set in the constructor of the class.
Contained data does not matter at this moment
I've looked a bit around but couldn't find a direct solution to my problem, is this possible in VB.NET?
Thanks
I have the followig problem; i want to make a class with a private field as a 2-dimensional array, where it's dimension is set in the constructor of the class.
Contained data does not matter at this moment
I've looked a bit around but couldn't find a direct solution to my problem, is this possible in VB.NET?
VB.NET:
Private twoDimArray(,) As Integer
Public Sub New(ByVal width As Integer, ByVal height as Integer)
?
?
End Sub
Thanks