I'm new to .net, having trouble with arrays.
I have declared an array
Here are the array declarations.
Here is the code
As you can see ive tried simple "=" as well as setvalue.
Both give me a Null Reference. So how do I initialize this array?
Your help is appreciated.
I have declared an array
Here are the array declarations.
VB.NET:
Dim MasterList() As String
Dim MasterPath() As String
Here is the code
VB.NET:
Case "dll"
DllCount += 1
MasterPath.SetValue("C:\Windows\System32\", MasterCount)
MasterList.SetValue(System32List(I), MasterCount)
MasterCount += 1
Case "exe"
ExeCount += 1
MasterPath(MasterCount) = "C:\Windows\System32\"
MasterList(MasterCount) = System32List(I)
MasterCount += 1
As you can see ive tried simple "=" as well as setvalue.
Both give me a Null Reference. So how do I initialize this array?
Your help is appreciated.
Last edited: