Hi, i have an VB.NET application with few functions i need to debug (like ie. Assert in C#). Is it possible and how i do that ?
Public Shared Function createNumberArrayList(ByVal startValue As Integer, _
ByVal endValue As Integer, _
Optional ByVal isBackwards As Boolean = False) As ArrayList
Dim nArrayList As New ArrayList()
If Not isBackwards Then
For index As Integer = startValue To endValue
nArrayList.Add(index)
Next
Else
For index As Integer = endValue To startValue
nArrayList.Add(index)
Next
End If
Return nArrayList
End Function
Basically what i need is to enter few values and see if the function works and returns proper ArrayList.
Thanks