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 are the two main parts of .net?
Explain i.tostring method?
Explain clr?
What is the difference between readonly variable and constant variable?
Can you please explain the difference between thread and process?
What is an arraylist?
Can you please explain the difference between value and reference types?
Name some different types of control?
What is the use of assembly?
What is the main purpose of garbage collector?
Explain jit?
Before in my vb app I would just load the icons from dll. How can I load the icons provided by .net dynamically?
What are the difference between structure and class?
What is the significance of delegates?
What is the difference between vb 6 and vb.net?