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

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

plash(Posted 2007) [#1]
1. Does Import support C# code (a dream)?
2. I'm trying to pack 2 integers together (to make a long), how would I do this? (hiword / loword)


Yan(Posted 2007) [#2]
1. No

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


Dreamora(Posted 2007) [#3]
And just to answer the next question: no you can not import or use C# DLLs as well, BM does not support .NET assemblies.