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
Console.WriteLine("Ente a:")
a = ReadLine()
Console.WriteLine("Enter b:")
b = ReadLine()
c = a + b
Console.WriteLine("The Result is:" & c)
ReadLine()
End Sub
End Module
| Is This Answer Correct ? | 15 Yes | 12 No |
Post New Answer View All Answers
What is DLL HELL in VB.NET
What are the differences between c# and visual basic.net?
What is the difference between convert.tostring and i.tostring method?
What is public assembly?
Define clr?
What is the purpose of an Assembly?
Explain the difference between thread and process?
How to store images in sql server database through vb.net?
how to get dynamic control array position or its index position?
What is the use of errorprovider control?
Explain cts?
Explain the use of console application?
Explain cls?
Define cls?
What are the assembly entry points?