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
Explain how to send xml file on server using http protocol?
How to store decimal data in .net?
my project run very wel in my sytem yhen i am deploying my project on client machine ,after deployment i run my project then it show " can no find server name " what i do .
Explain the use of option explicit?
List the two main parts of .net?
What is private assembly?
What are the different types of applications supported in .net (or) .net framework?
What is late binding and early binding?
how many server control present in .net
Name some of the features present in vb 2005?
What are the different variables in vb.net?
What is the top .net class that everything is derived from?
How do you define a read only property in a class module?
Explain an assembly?
Explain the observations between vb.net and vc#.net?