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
Console.WriteLine("Ente a:")
a = ReadLine()
Console.WriteLine("Enter b:")
b = ReadLine()
c = a + b
Console.WriteLine("The Result is:" & c)
ReadLine()
End Sub
End Module
Is This Answer Correct ? | 15 Yes | 12 No |
Post New Answer View All Answers
What is jagged array in vb.net?
What is strong name in .net assembly?
What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?
Which properties are used to bind a DataGridView control?
Which dll is used for microsoft .net run time?
What is the main use of a namespace?
How to store images in sql server database through vb.net?
What is the difference between datagrid and gridview?
Why should you use delegate?
what is difference between web.config and machine.config and where it will be ?
What is the top .net class that everything is derived from?
What is the difference between custom control and user control?
Explain how can we remove handlers at run time?
Explain the difference between dispose and finalize()?
Explain an assembly and its use?