Mega Code Archive

 
Categories / VB.Net / Data Types
 

Use the Sign(Byte) method to determine the sign of a byte value and display it to the console

Class Sample    Public Shared Sub Main()       Dim xByte1 As Byte = 0       Console.WriteLine("Byte")       Console.WriteLine(xByte1)       Console.WriteLine(Test(Math.Sign(xByte1)))    End Sub     Public Shared Function Test([compare] As Integer) As [String]       If [compare] = 0 Then          Return "equal to"       ElseIf [compare] < 0 Then          Return "less than"       Else          Return "greater than"       End If    End Function End Class