I'm using VS 2013. I want to use the system.numerics.biginteger structure but VS says there is no such namespace as system.numerics! According to MSDN there should be. What am I missing?
Imports System.IO
Imports System.Numerics '<<<< error
Module Module1
Sub Main()
Dim OneLightYearInches As BigInteger = 372469703661417000
End Sub
End Module