Question about Long's (hiword/loword) & C# Code

BlitzMax Forums/BlitzMax Programming/Question about Long's (hiword/loword) & C# Code

1. Does Import support C# code?

2. I'm trying to pack 2 int's together (to make a long), how would i do this? (hiword / loword?)

1. No

2.
Local l:Long = (Long(hi) Shl 32) | (Long(lo) & $ffffffff:Long)
??

And just to answer the next question: no you can not import or use C# DLLs as well, BM does not support .NET assemblies.