Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you mix .net languages within a single project?

Tags:

c#

.net

f#

Can you mix .net languages within a single project? So pre-compiled, I would like to call classes and methods of other source files.

For both web and apps?

In particular I'd be interested in F# and C#.

like image 702
Brian R. Bondy Avatar asked Oct 13 '08 04:10

Brian R. Bondy


1 Answers

You can mix languages in a single assembly with ILMerge and MSBuild.

Here is a very good example about it.

like image 121
Christian C. Salvadó Avatar answered Sep 23 '22 19:09

Christian C. Salvadó