Is is possible to mix C# and VB.NET files in one project when using SharpDevelop?
问问题
803 次
2 回答
4
Probably not, at least not directly... you would have to use two compilers to produce one assembly, which is not supported AFAIK. However, if your final goal is to produce a single assembly, you could probably compile two separate assemblies and merge them using ILMerge
于 2009-09-08T21:45:30.353 回答
-1
if you are trying to make a vb project, but vb doesnt have the expressions and statements you were looking for, make the two parts seperately, and convert one to the main language the program is made in. to convert it, use sharpdevelop, which is a better version of vs.net
于 2010-08-15T22:31:40.270 回答