Question biginteger

andrews

Well-known member
Joined
Nov 22, 2011
Messages
171
Programming Experience
5-10
I use visual basic in the latest visual studio and I put the code imports system.numerics.biginteger in a module but de code (type biginteger) is not recognized , it seems that I had to use assemblies or/and framework but I do not see these words in the add from project solution
 
Try just
VB.NET:
Expand Collapse Copy
Imports System.Numerics
this is with a .Net 8 VB.Net app EDIT: Using Winforms

I also created a module (make sure not to name your module BigInteger, this will cause a conflict.) that used it.
 

Attachments

  • Screenshot 2025-07-21 043906.png
    Screenshot 2025-07-21 043906.png
    20.1 KB · Views: 0
Back
Top