how to get sum of two numbers in vb.net?
Answer Posted / rajesh
Sub main()
Dim a , b , c As Integer
System.Console.WriteLine("Enter a")
a = Console.ReadLine
System.Console.WriteLine("Enter b")
b = Console.ReadLine
c=a+b
System.Console.WriteLine("The value is")
MsgBox(c)
End sub
| Is This Answer Correct ? | 19 Yes | 11 No |
Post New Answer View All Answers
what is common language specification?
Explain how the .net framework performs automatic memory management.
How to create a constant in vb.net?
Why do you need Lock in Visual Basic?
Which properties are used to bind a DataGridView control?
Can you please explain the difference between authentication and authorization?
thak you Mr Govind for replying to my question. My next question is that how to retrieve image stored in an SQL server table and assign it to any image control or picture control using VB.net
Explain how to send xml file on server using http protocol?
What is the significance of delegates?
What is the difference between .dll extension and .exe extension files?
What are the differences between vb.net and c#, related to oops concepts
Explain how can we remove handlers at run time?
What is the use of assembly?
What is late binding and early binding?
Define serialization in .net?