I know the converse is not true, but if my application works using Mono is it guaranteed to work if I switch to the real deal? If not, where can I find a list of caveats?
|
Both Mono and .NET are supersets of the ECMA/ISO CLI family of specifications. However, neither .NET nor Mono are subsets of the other. Both Mono and .NET add features on top of ECMA/ISO CLI, but while Mono implements many of .NET's additions, .NET does not implement any of Mono's additions. Here's a few examples:
Note, however, that (except for the arrays), all of these are clearly distinguishible by their namespaces, since none of them live in the EDIT: Actually, most of the above-mentioned extensions are explicitly designed to also work on .NET. For example, Only the |
|||||
|
|
No. Mono includes several alternative UI frameworks (Gtk#, wxWindows for .NET, etc). If you only use Microsoft-defined classes, though, you should be fine. |
|||
|
|
|
Mono is an implementation of the CLI standard, as is the CLR. It includes many of the libraries you would find in the .NET BCL, but not any that are windows specific (WMI is one whole domain that comes to mind). So long as you keep to features that are not windows specific, you should be fine. The mono team have created a tool to check if your code should work on mono - MoMA, the Mono Migration Analyzer. As far as using mono code with the Microsoft compilers, so long as you include the libraries you are using and are not doing any pInvokes on linux, you should be fine. |
||||
|
|
|
Mono does not extend BCL APIs, at least not in the From the Mono FAQ:
|
|||||
|