In community someone asked how to count the numbers of a decimal number. Classic example of how you might use Linq in a single line of code:
Dim DoubleNumber As Double = 54637.3456789
Dim Count As Integer = DoubleNumber.ToString("f").Where(Function(c) Char.IsDigit(c)).Count
HTH
Alberto