Math.Exp returns e raised to the specified power.
Imports System Imports Microsoft.VisualBasic Module ExpDemo Sub Main() Console.WriteLine(Math.Exp(100)) End Sub End Module