Author Topic: Passing Int64 to VA  (Read 4256 times)

Shadow Doctor K

  • Guest
Passing Int64 to VA
« on: February 26, 2018, 01:00:25 PM »
In C# is there a way to pass Int64 to VA as a variable or are we limited to using Int32? I know some of the values I will be processing are larger then the Max for Int32.

Shadow Doctor K

  • Guest
Re: Passing Int64 to VA
« Reply #1 on: February 26, 2018, 01:35:05 PM »
I'm trying to figure out how to pass int's larger that 2,147,483,647. In VB it was easy I just let VB resolve the conversion when it set, in C# I have to do the conversion my self but it will only allow values up to the number above.

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4760
  • RTFM
Re: Passing Int64 to VA
« Reply #2 on: February 26, 2018, 02:30:49 PM »
If you need anything bigger than an int32 you'll need to use decimal values.

Shadow Doctor K

  • Guest
Re: Passing Int64 to VA
« Reply #3 on: February 26, 2018, 02:36:19 PM »
Thanks for the fast reply.