Mega Code Archive
BigInteger Pow Method Raises a BigInteger value to the power of a specified value
Imports System.Numerics
Imports System
Module Example
Public Sub Main()
Dim base As BigInteger = 9999
For ctr As Integer = 0 To 10
Console.WriteLine(BigInteger.Pow(base, ctr))
Next
End Sub
End Module