Integer.CompareTo : Integer « System « VB.Net by API






Integer.CompareTo

  
 
public class Test
   public Shared Sub Main
        Dim I As Integer = 0
        Dim S As Integer = 8
        Console.WriteLine(I.CompareTo(S))

   End Sub
End class

   
    
  








Related examples in the same category

1.Integer.GetType
2.Integer.MaxValue
3.Integer.MinValue
4.Integer.Parse
5.Integer.ToString()