Managing multiple .NET languages in a web application

Posted by tomfanning on Stack Overflow See other posts from Stack Overflow or by tomfanning
Published on 2010-04-19T14:24:59Z Indexed on 2010/04/19 14:33 UTC
Read the original article Hit count: 343

I am part of a development team building a new ASP.NET 3.5 web application. Two of us are C# coders, and the other is a VB.NET coder.

I know that we can mix languages on a per-project basis, and one can build classes in one language that inherit from classes written in the other language in a different project (which we are already doing), but I can see us getting into a situation where we might well end up with cyclic dependencies between our various project DLLs.

Other than simply having a high number of projects (more seperation of concerns into more libraries), how have you managed this situation on your own projects?

Note - I believe this question to be different enough from the only similar match I could find (this one) on the basis that we are not wanting to use different languages in order to take advantage of their specific features per se, but rather to make use of what developer resource is available to us (i.e. one dev just happens to be VB.NET only).

© Stack Overflow or respective owner

Related posts about language-features

Related posts about .NET