how to get sum of two numbers in vb.net?
Answer Posted / aman
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 ? | 5 Yes | 8 No |
Post New Answer View All Answers
What is the significance of delegates. Where should they be used?
What are the advantages of vb.net and c#?
How many classes a dll can contain?
Can you please explain the difference between c# and vb.net?
What is the difference between convert.tostring and .tostring() method?
Explain how to store decimal data in .net?
What are the technology areas that microsoft.net contains?
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 ?
What is the difference between compiler and interpreter?
Explain the observations between vb.net and vc#.net?
What is late binding and early binding?
Which properties are used to bind a DataGridView control?
Explain the services provided by common language infrastructure.
Explain the advantages of migrating to vb.net?
Thank you for replying to my Question regarding Barcodes in VB.net. My next question is that how to use Barcode Fonts in VB.net I need a small code to Generate Barcodes in VB.net from a string of Values. This is the only problem i am left with in my project. Any body can help me please.