Do you have any idea why the following test case fails?
Imports NUnit.Framework
<TestFixture()> _
Public Class ArrayTests
<Test()> _
Public Sub ArraySize()
Dim myArray(5) As Integer
Assert.AreEqual(5, myArray.Length)
End Sub
End Class
The reason is one of the differences between vb.net and c# that i hate.
Posted
09-26-2006 7:30 PM
by
jokiz