Hi

in VS 2008, I started a new VB console project, using default options. I wrote this simple program:

Module Module1

Sub Main()
Dim ArrayOfInts() As Integer

ArrayOfInts = New Integer() {1, 2, 3, 4, 5, 6, 7, 8, 9}

For i = 0 To ArrayOfInts.Length - 1
Debug.WriteLine(ArrayOfInts(i))
Trace.WriteLine(ArrayOfInts(i))
Next
End Sub
End Module

...then ran it under debug (I just hit F5)

However, I cannot find the output from the calls to writeline. Not in the Output window, not in the Immediate window and not in the console output. So...where is it going?

Or, do I need to do something extra to get these to appear?