how to get sum of two numbers in vb.net?
Answer Posted / shamseena
imports system.console
sub main()
a,b,c as integer
Console.WriteLine("Ente a:")
ReadLine()
Console.WriteLine("Enter b:")
ReadLine()
c=a+b
Console.WriteLine("The Result is:"+c)
End Sub
Is This Answer Correct ? | 43 Yes | 23 No |
Post New Answer View All Answers
How to view an assembly?
Explain strong name in .net assembly?
Explain the difference between vb.net and c#, related to oops concepts?
Explain the difference between vb 6 and vb.net?
Explain about the ruby interface generator?
what is diffrence constructor and destructor in vb
Which classes a dll can contain?
What is intermediate langauge?
Explain the use of serialization and deserialization?
Explain clr?
Explain the services provided by common language infrastructure.
What are the types of generations in garbage collector?
What is the difference between static or dynamic assemblies?
How many ways the function can return values?
what's ArrayList in .Net (VB.Net or C#).What's the advantageous using ArrayList.