vote up 3 vote down star

Boo seems like a very cool language. Is it 100% C# compatible? I mean: can I use any C# DLL/class? Could I make use of the XNA framework?

flag

If it runs on top of .NET, it should be. – Adrian Godong Jul 17 at 19:42
Yup, i think i got a serviceable implementation of XNA working with F#. – RCIX Aug 25 at 0:11

4 Answers

vote up 5 vote down check

As far as I know, Boo has an implementation on top of the .NET CLR - which implies that it should be able to both consume, and be consumed by C# code. The syntax may not always be pretty when consuming Boo from C# - but the opposite should be quite elegant, given Boo's syntax.

Also, all of the classes in the .NET BCL should be available to you in Boo.

link|flag
vote up 1 vote down

It would be no different than using VB.NET with C#. Currently the only big different between the two (functionally) is Boo does not have pointers... but there are ways to handle that.

PS: Boo IS a wonderful language.

link|flag
vote up 1 vote down

IIRC, any language which compiles into IL (Intermediate Language, .NET's version of Java's bytecode) can work with any other language which does the same. So you can mix C#, F#, ASP.NET, VB.NET, and if Boo does the same, you should be able to use with with C# as well.

link|flag
1  
Not exactly. It is possible to create constructs in certain languages that can't be consumed by other languages. Example: codebetter.com/blogs/matthew.podwysocki/… – Mauricio Scheffer Jul 17 at 22:58
vote up 1 vote down

Yes Boo is easily consumed by C# and vice versa. Most of the best features of Boo don't carry over to C#, such as syntactic macros, for obvious reasons, but you can create Macros in C# and consume them in Boo. Additionally Boo has the nice feature of being able to create Modules, which is something you can't do in C#.

They both can create extension methods. Boo has 'duck' typing while C# now has the "dynamic" keyword. While they're both functionally equivalent you might end up seeing the two merge eventually.

Boo currently has known issues with generics, but the feature will be completely supported once they are all ironed out. I suspect there will have to be some extra work done to support the new Co/Contra-variance features in .NET 4 as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.