I personally use Mono in a prime-time env.
I run mono servers dealing with giga-bytes of udp/tcp data processing related tasks and couldn't be happier.

There are peculiarities, and one of the most annoying things is that you can't just "build" your msbuild files due to Mono's current state:

  - MonoDevelop (the IDE) has some partial msbuild support, but will basically bork on any "REAL" build conf beyond a simple hello-world (custom build tasks, dynamic "properties" like $(SolutionDir), real configuration to name a few dead-ends)
  - xbuild which *SHOULD have been* the mono-supplied-msbuild-fully-compatible-build-system is even more horrible, so building from the command line is actually a worse experience than using the GUI, which is a very "unorthodox" state of the union for Linux environments... 

Once/During getting your stuff actually BUILT, you might see some wildernesses even for code that SHOULD be supported like:

- the compiler getting borked on certain constructs
- and certain more advanced/new .NET classes throwing un-expected crap at you (XLinq anyone?)
- some immature runtime "features" (3GB heap limit ON x64... WTF!) 

*but heaving said that generally speaking things start working very quickly, and solutions/workarounds are abundant*.

**Once you've gone over those initial hurdles, my experience is that mono ROCKS, and keeps getting better with every iteration**.

I've had servers running with mono, processing 300GB of data per day, with tons of p/invokes and generally speaking doing LOTS of work and staying UP for 5-6 months, even with the "bleeding edge" mono.



Hope this helps.