how to get sum of two numbers in vb.net?
Answer Posted / banshi
Sub Main()
Dim x, y As Integer
Console.Write("Enter value of x: ")
x = Console.ReadLine()
Console.Write("Enter value of y: ")
y = Console.ReadLine()
Console.Write("Sum x+y = ")
Console.WriteLine(x + y)
Console.ReadLine()
End Sub
| Is This Answer Correct ? | 124 Yes | 34 No |
Post New Answer View All Answers
What is econo-jit?
What is DLL HELL in VB.NET
Explain about globalization?
How to send xml file on server using http protocol?
What is portable executable?
Name some of the features present in vb 2005?
Explain namespace?
What are the differences between c# and visual basic.net?
Explain how the .net framework performs automatic memory management.
What is difference between metadata and manifest?
What are the objects in asp.net?
What is static member?
What is strong name in .net assembly?
Explain about jagged arrarys ?
i have two class that contain's two methods as same name in derived class i have to call these two methods what will happen at run time ?