Tutorials and Interviews
We are the Group of Webxperts in .net technology
Saturday, September 17, 2011
Writing line of text with multiple statements.
Module Tester
Sub
Main
()
Console.Write
(
"Welcome to "
)
Console.WriteLine
(
"Visual Basic!"
)
End Sub
' M
ain
End
Module
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Azure Table Storage Full Tutorial | Setup, CRUD, PartitionKey, Interview...
Add two integers together
Module Tester Sub Main () Dim firstNumber, secondNumber As String Dim number1, number2, sumOfNumbers As Intege...
Turn Explicit off to use variable without declaration
Option Explicit Off Module Module1 Sub Main () EmployeeName = "Buddy Jamsa" EmployeePhoneNumber = ...
Cause compiler error when Option Strict On
Module Module1 Sub Main () Dim AnInt As Integer = 5 Dim ALong As Long = 7 ALong = AnInt 'ca...
No comments:
Post a Comment