Math.Log returns the natural (base e) logarithm of a specified number.
Module Example Sub Main() Console.WriteLine(Math.Log(123)) End Sub End Module