how to get sum of two numbers in vb.net?
Answer Posted / ambar
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 ? | 10 Yes | 7 No |
Post New Answer View All Answers
Explain about branching logic control in vb.net?
Is vb.net a programming language?
What is vb.net used for?
What are all the differences between dispose and finalize()?
how to get dynamic control array position or its index position?
what's ArrayList in .Net (VB.Net or C#).What's the advantageous using ArrayList.
What is globalization?
What is normal jit?
How to send xml file on server using http protocol?
What is the exact defination of object?
What languages does the .net framework support?
What are the difference between structure and class?
What is an application domain? how they get created?
I Am Developing A project where I can send Message from One Computer to Another Computer With The Help Of LAN.Already I Have developed..It is working Fine With The Details Of ..TO,FROM,REF No,DATE,BODY...Now I Want To Add Attachments part in the same projects...How Can I Send Attachment File & How To Send It..I Am Working in VB.Net 2005 With out Any database. Can Any One Help me ??How To Write Code??Plz Send me a copy to my Mail also...I Dont Need Any Software Available in The Internet...Plz refer me The Code in VB.Net maloy.adhikari@in.com
What is the source code for display the picture in button click event?