Visual Basic .NET/Style Guide
From Wikibooks, the open-content textbooks collection
< Visual Basic .NET(Redirected from Programming:Visual Basic .NET:Style Guide)
This is the style guide for the Visual Basic .NET wikibook. Please try to follow it when making changes or additions to this book. If you find a page that does not follow this guide please change it.
[edit] Code
When adding code examples, please color it as it would appear in VB .NET. Use the font HTML Tags to do this. Example:
<font color="green">' This is a comment</font> <font color="blue">Dim</font> x <font color="blue">As</font> Integer = 5 <font color="blue">Dim</font> s <font color="blue">As</font> String = <font color="#A31515">"Hello World!"</font>
produces:
' This is a comment Dim x As Integer = 5 Dim s As String = "Hello World!"