Integer calculation : Integer « Data Type « VB.Net Tutorial






public class Test
   public Shared Sub Main
        Dim n As Integer

        ' try adding numbers...
        n = 16
        n += 10.23
        Console.WriteLine("Addition " & n)

        ' try subtracting numbers...
        n = 24
        n -= 2
        Console.WriteLine("Subtraction " & n)

        ' try multiplying numbers...
        n = 6
        n *= 10
        Console.WriteLine("Multiplication " & n)

        ' try dividing numbers...
        n = 12
        n /= 6
        Console.WriteLine("Division " & n)


   End Sub
End class
Addition 26
Subtraction 22
Multiplication 60
Division 2








2.2.Integer
2.2.1.Define Integer variable and assign value
2.2.2.Add two integers together
2.2.3.Integer calculation
2.2.4.Swap two integers without using a third
2.2.5.MinValue and MaxValue of Integer
2.2.6.Parse Integer
2.2.7.Integer.GetType
2.2.8.Integer boolean calculation: Or, And, Xor, Not
2.2.9.Parse Integer variable and get hash code from Integer
2.2.10.Use Integer.CompareTo to compare two integers
2.2.11.Integer format: D10
2.2.12.Pass Integer to a function by reference
2.2.13.Pass Integer to a function by value
2.2.14.Compare Integer value in If statement
2.2.15.Integer OverflowException
2.2.16.Implicit conversion of an integer to a string
2.2.17.Explicit conversion of an integer to a string