A custom function to return inches from passed in centimeter value : Data Type « Data Types « VB.Net






A custom function to return inches from passed in centimeter value

   
Public Class MainClass

    Private Function Inches(ByVal Cm As String)
        Inches = Val(Cm) / 2.54
        Inches = FormatNumber(Inches, 2)
        Return Inches

    End Function
End Class

   
    
    
  








Related examples in the same category

1.Value type and Reference typeValue type and Reference type
2.Compare two boolean values
3.Compare two Byte values
4.Compare two Int16 numbers
5.Compare two Int32 values
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