Compare two Int32 values : Data Type « Data Types « VB.Net






Compare two Int32 values

 

Imports System

Class Sample
   Public Shared Sub Main()
      Dim d1 As Int32 = 3,           d2 As Int32 = 3
      Console.WriteLine(d1.CompareTo(d2))
      Console.WriteLine(d1.CompareTo(CObj(d2)))
   End Sub 'Main

End Class

   
  








Related examples in the same category

1.Value type and Reference typeValue type and Reference type
2.A custom function to return inches from passed in centimeter value
3.Compare two boolean values
4.Compare two Byte values
5.Compare two Int16 numbers
6.Compare two Int64 values
7.Compare two Decimal values
8.Compare two Single values
9.Compare two Double values
10.Compare two Char values
11.Compare two string values
12.Compare two DateTime values
13.Compare two TimeSpan values
14.Compare two Version values