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
Name a feature which is common to all .net languages?
How to retrieve images in sql server database through vb.net?
What is the strong name in .net assembly?
Can you please explain the difference between thread and process?
What are jagged arrarys ?
What is the significance of delegates. Where should they be used?
List the different types of assembly?
What is branching logic control in VB.NET?
What is the use of internal keyword?
What is break mode? What are the options to step through code?
What are jagged arrays ?
Explain global assembly cache (gac)?
What is the ruby interface generator?
What is the significance of delegates?
What is DLL HELL in VB.NET