Entries:
Comments:
Posts:

Loading User Information from Channel 9

Something went wrong getting user information from Channel 9

Latest Achievement:

Loading User Information from MSDN

Something went wrong getting user information from MSDN

Visual Studio Achievements

Latest Achievement:

Loading Visual Studio Achievements

Something went wrong getting the Visual Studio Achievements

Happy Holidays Niners

Download

Right click “Save as…”

Embed code for this video

Copy the code above to embed our video on your website/blog.

Close

Video format

Note: These selections will fall back to the next best format depending upon browser capability.

Close

In keeping with what has become a holiday tradition here on Channel 9 he have Chris Anderson, Don Box and now Amanda Silver singing you a special holiday song.

You can compile along with them by grabbing the source project for this video.  

From all of us at Channel 9, we would like to wish you and your family a Very Beautiful holiday season!  For even more holiday cheer, please check out episodes I, II,III and IV.











'VS-indenting

Module
VB
    Dim myvar As Integer?() = {3 * 3}
    Sub Main()
        For Each i In myvar
            Console.Write("Hello VB")
            With i
                Console.Write(.Value)
            End With REM a language so true
            If i IsNot Nothing Then
               Console.WriteLine()
            End If REM 
            Console.Write(<some>xml</some>)
        Next
    End Sub
End Module

'Lyrical-indenting

Module
VB : Dim myvar As _
Integer?() = {3 * 3}
Sub Main() : For Each i In myvar
Console.Write("Hello VB")
With i : Console.Write(.Value)
End With REM a language so true

If i IsNot Nothing Then
Console.WriteLine() : End If REM
Console.Write(<some>xml</some>)
Next : End Sub : End Module

Comments Closed

Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.