|
I have a C# library I am attempting to use from Boo. I have imported it all into my project, however, Boo doesn't seem to see the Namespace and hence none of the members of the namespace. This is not a DLL, just code. Calling the same items from a C# script works fine as you'd expect. Any suggestions?
(comments are locked)
|
|
Sounds like the usual JS/C# compilation order dependency problem. Either research that for the best solution, or move your C# library code to a folder named "Plugins", which will cause it to be compiled first, so the Boo scripts will know about the classes. Looks like it's working. I thought Plugins were Pro-only though. Or is that just native binaries/non-.NET stuff?
Jun 15 '12 at 09:13 PM
squirlhntr
Yep, that's about the .dll import.
Jun 15 '12 at 09:24 PM
Wolfram
Thank you. That makes a good deal of sense and clears some things up.
Jun 15 '12 at 09:26 PM
squirlhntr
(comments are locked)
|
