BigInteger.Parse(num1)

Hello,
For “Assign”, I want the value to be “BigInteger.Parse(num1)”. But I get this error:

Compiler error(s) encountered processing expression “BigInteger.Parse(num1)”.
‘BigInteger’ is not declared. It may be inaccessible due to its protection level. Main.xaml

System.Numerics.BigInteger(9)

make sure that you import system.Numerics in studio

Error FEHLER Compiler error(s) encountered processing expression “System.Numerics.BigInteger(9)”.
‘BigInteger’ is not a member of ‘Numerics’. Main.xaml

Getting this error

BigInteger.xaml (4.3 KB)

1 Like

@work_low

It should be like this:

      System.Numerics.BigInteger(num1)

Thanks bro, worked for me!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.