M
Mike Miller
What is the best way to convert a managed unsigned int64 to an
unsigned long? Basically I need to do the following:
System::UInt64 managedInt = 10;
unsigned long unmanagedInt;
unmanagedInt = managedInt;
Also it would be nice to know how to do this:
System::UInt64 managedInt;
unsigned long unmanagedInt = 10;
managedInt = unmanagedInt;
Thanks for your help.
Mike
unsigned long? Basically I need to do the following:
System::UInt64 managedInt = 10;
unsigned long unmanagedInt;
unmanagedInt = managedInt;
Also it would be nice to know how to do this:
System::UInt64 managedInt;
unsigned long unmanagedInt = 10;
managedInt = unmanagedInt;
Thanks for your help.
Mike