Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
How to Add Two Numbers in Visual Basic.NET
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
To add two numbers in Visual Basic.NET, you can use the "+" operator or the "Add" method. Here's an example code that demonstrates both methods: ``` Dim num1 As Integer = 5 Dim num2 As Integer = 10 ' Using the "+" operator Dim result1 As Integer = num1 + num2 ' Using the "Add" method Dim result2 As Integer = num1.Add(num2) Console.WriteLine("Result using '+' operator: " & result1) Console.WriteLine("Result using 'Add' method: " & result2) ``` In this code, we first declare two variables "num1" and "num2" and assign them values of 5 and 10 respectively. We then use the "+" operator to add these two numbers and store the result in the "result1" variable. Next, we use the "Add" method of the "num1" variable to add "num2" to it, and store the result in the "result2" variable. Finally, we display both results using the "Console.WriteLine" method. Output: ``` Result using '+' operator: 15 Result using 'Add' method: 15 ``` Both methods yield the same result, so you can use whichever you prefer.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)