how to get sum of two numbers in vb.net?
Answer Posted / kaviyarasu
Imports system.console
Module Module1
Sub main()
Dim a, b, c As Integer
WriteLine("Ente a:")
a = ReadLine()
Console.WriteLine("Enter b:")
b = ReadLine()
c = a + b
WriteLine("The Result is:" & c)
ReadLine()
End Sub
End Module
Is This Answer Correct ? | 14 Yes | 8 No |
Post New Answer View All Answers
What is stack used for in vb. Net?
What is difference between metadata and manifest?
How many languages are supported by .net?
What is pre-jit?
What is the use of assembly?
Tell us how many languages are supported by .net?
What is the difference between import system.data.sqlclient and system.data.oledb?
Define manifest?
Why is the xml infoset specification different from the xml dom?
What are the difference between structure and class?
What would you do to remove microsoft visual basic name space?
What is the significance of delegates?
Which class allows an element to be accessed using unique key?
Name the two main parts of .net?
Thank you for replying to my Question regarding Barcodes in VB.net. My next question is that how to use Barcode Fonts in VB.net I need a small code to Generate Barcodes in VB.net from a string of Values. This is the only problem i am left with in my project. Any body can help me please.