T
tshad
Is there a place to see the new features in the VB.Net language in 2005?
I know that you can have nullable variables for one and in strings:
Dim s10 As String() = Regex.Split("Each word in this string will end up
being an item in this string array", " ")
For ktr As Integer = 0 To s10.Length
Console.WriteLine("s10 = {0}", s10(ktr))
Next
The "s10(ktr)" works in 2005 and doesn't in 2003.
Thanks,
Tom
I know that you can have nullable variables for one and in strings:
Dim s10 As String() = Regex.Split("Each word in this string will end up
being an item in this string array", " ")
For ktr As Integer = 0 To s10.Length
Console.WriteLine("s10 = {0}", s10(ktr))
Next
The "s10(ktr)" works in 2005 and doesn't in 2003.
Thanks,
Tom