MC# 2.0.60 Notes:

1. COMPILATION ERRORS

MC# compilation process consists of the two steps. The first step is a translation from MC# to C#. The second step is a translation from C# to bytecode by csc-compiler. If you use Visual Studio 2005, to see the results of the first step (MC# to C# translation) you should open "Output" window. The results of second step appear in "Error" window, which is opened automatically after the translation completion.

2. WORKLOAD BALANCING

Automatic workload balancing tool is applicable only for Windows Server 2003 and Windows Vista. For other versions, acts a Windows standart scheduling policy.

3. C# 2.0 SPECIFIC FEATURES

At current time, MC# compiler doesn't support C# 2.0 features, like generics. In most cases you can bypass that problem painlessly. To do that you can include in your project both .cs and .mcs files collecting C# 2.0 specific features in the .cs files. MC# compiler simply ignores the .cs files passing them to C# compiler without any processing.

MC# Team