Mono is an open source implementation of .NET that runs on many platforms, including Linux, Mac OS X, and Windows. This allows running .NET applications on platforms other than Windows with little to no modification.

learn more… | top users | synonyms

267
votes
16answers
16k views

Is Mono ready for prime time?

Has anyone used Mono, the open source .NET implementation on a large or medium sized project? I'm wondering if it's ready for real world, production environments. Is it stable, fast, compatible, ... ...
225
votes
12answers
22k views

How to decide between MonoTouch and Objective-C?

After sitting through a session today on Mono at a local .Net event, the use of MonoTouch was 'touched' upon as an alternative for iPhone development. Being very comfortable in C# and .Net, it seems ...
129
votes
9answers
187k views

Encrypt/Decrypt string in .NET

Can someone give me the code to Encrypt and Decrypt a string in C#?
122
votes
10answers
29k views

Most useful NLog configurations [closed]

What are the best or most useful configurations for logging with NLog? (These can be simple or complex, as long as they're useful.) I'm thinking of examples like automatically rolling over log files ...
73
votes
16answers
11k views

Is .NET/Mono or Java the better choice for cross-platform development? [closed]

How much less libraries are there for Mono than for Java? I lack the overview over both alternatives but I have pretty much freedom of choice for my next project. I'm looking for hard technical facts ...
71
votes
4answers
7k views

How can I launch multiple instances of MonoDevelop on the Mac?

I would like to open a new MonoDevelop instance to work on a different project on the Mac, and the OS is currently preventing me from opening a new instance.
62
votes
8answers
3k views

The State of Linkers for .NET apps (aka “Please Sir, May I have a Linker” 2009 edition)

Many people here are probably familiar with one of Joel Spolsky most popular blog posts, Please Sir, May I Have a Linker, where he cries out for a way to remove dependencies on the .NET framework so a ...
43
votes
8answers
17k views

How to get F# working with Mono?

I can't seem to find a compiler/plugin for mono. Does one exist?
40
votes
5answers
13k views

Mono on Raspberry Pi

I've seen a lot of talk about running Mono/.NET code on the Raspberry Pi (Stack Overflow question MonoDevelop ARMv6 on Raspberry Pi). Has there been any succceses in actually running any Mono code on ...
39
votes
3answers
6k views

Deploy ASP.NET MVC on Linux: Best Practices, Tools & Suprises

I'm wondering about best practices to develop ASP.NET MVC apps with an option to deploy on Linux. If you are creating these kinds of MVC apps, What Linux/Mono platform are you targeting? How much of ...
37
votes
2answers
22k views

Install Mono on Centos5.5 using YUM

I'm a Linux neophyte and can't figure out how to install the Mono 2.6.7 runtime on CentOS 5.5 using yum. I know how to build Mono from the source. However, according to this page it is possible to ...
37
votes
7answers
10k views

How do I code a Mono Daemon

I'm trying to write a Mono C# daemon for linux. I'd like to do a starts and stops of it when its done processing instead of just killing the process. Does anyone have any examples of this? Edit: I ...
35
votes
7answers
17k views

IDE's for C# development on Linux?

What are my options? I tried MonoDevelop over a year ago but it was extremely buggy. Is the latest version a stable development environment?
34
votes
4answers
9k views

Mono Cecil documentation and tutorials?

I am new to Mono Cecil! Any comprehensive documentations and tutorials on Mono Cecil? I have seen these articles and video below, so don't give me these links again: ...
33
votes
12answers
4k views

What's the point of Mono on Windows

This may be a dumb question...but I was just looking into the Mono project and they have a section about installing Mono on Windows. But, since Windows obviously already has the .NET runtime can ...
32
votes
8answers
3k views

Should I use Mono on a real project?

Has anyone used Mono, the open source .NET implementation on a large or medium sized project? I'm wondering if it's ready for real world, production environments. Is it stable, fast, compatible, ... ...
31
votes
13answers
11k views

Graph database for .NET

I've been designing an application, based on .NET/Mono framework, which should make an heavy use of the shortest-path in a graph theories and I would like to use a native solution to traverse the ...
30
votes
13answers
4k views

Why use Mono? [closed]

What are the main benefits of using Mono over Java (or any other "free" or Linux-friendly language/runtime)? Mono will always trail behind the latest developments in the .NET framework, why would you ...
30
votes
2answers
3k views

Interlocked and volatile

I have a variable which I am using to represent state. It can be read and written to from multiple threads. I am using Interlocked.Exchange and Interlocked.CompareExchange to change it. However I am ...
29
votes
5answers
6k views

Does the Razor View Engine work for Mono?

I tried searching a bit and didn't find an answer. Does the Razor View Engine work in Mono?
29
votes
6answers
20k views

Is WPF on Linux (already) possible?

I love programming with .NET, especially C# 3.0, .NET 3.5 and WPF. But what I especially like is that with Mono .NET is really platform-independent. Now I heard about the Olive Project in Mono. I ...
29
votes
1answer
484 views

Extended UIButton border is not initially drawn

I am trying to create a custom UIButton which extends from UIButtonType.RoundedRect. My added functionality is working, but there is an issue with the initial rounded border state of my button. The ...
28
votes
1answer
2k views

.NET XMPP libraries under Apache, MIT or MS-PL licenses?

I am looking for a liberally licensed (MIT, X11, Apache, etc) version of the XMPP protocol for .NET and Mono. There are a handful of libraries under the GPL, LGPL and LGPL v2 for .NET and Mono, but ...
27
votes
7answers
2k views

Should a protected property in a C# child class hide access to a public property on the parent?

I have the following code: public class Parent { public string MyField { get; set; } } public class Child : Parent { protected new int MyField { get; set; } } I try and access this with: ...
27
votes
7answers
3k views

How to get started with Mono in Linux for a beginner?

How do I start using Mono in Linux as a beginner when I want to switch from Visual Studio? Is there some easy way to install it like Visual Studio and get started? So far,with what I've seen,it looks ...
26
votes
10answers
5k views

What's the best setup for Mono development on Windows?

I started trying to play with Mono, mostly for fun at the moment. I first tried to use the Visual Studio plugin that will convert a csproj into a makefile, but there seemed to be no version available ...
26
votes
5answers
13k views

.Net (dotNet) wrappers for OpenCV?

I've seen there are a few of them. opencvdotnet, SharperCV, EmguCV, One on Code Project. Does anyone have any experience with any of these? I played around with the one on Code Project for a bit, ...
26
votes
4answers
10k views

MonoDevelop ARMv6 on Raspberry Pi

Will MonoDevelop compile to the ARMv6, mainly so I can get it running on my Raspberry Pi? I've noted that Debian can run on the Raspberry Pi and Debian has a set of drivers for Mono. So does this ...
26
votes
4answers
7k views

Mono Project: Why is mono faster than .NET?

I am surprised to observe that mono is faster than .NET. Does anyone know why is it so? I was expecting mono to be slower than .NET but wasnt the case atleast with my experiments. I have a windows xp ...
25
votes
3answers
7k views

Is it possible to build MSBuild files (visual studio sln) from the command line in Mono?

Is it possible to build Visual Studio solutions without having to fire up MonoDevelop?
25
votes
2answers
588 views

Is there a technical reason that C# does not issue the “tail.” CIL instruction? [duplicate]

Possible Duplicate: Why doesn't .net/C# eliminate tail recursion? Take the following C# code: using System; namespace TailTest { class MainClass { public static void ...
25
votes
3answers
9k views

WCF support in Mono

I am trying to figure out what is and isn't supported for WCF under Mono. I have read the WCF Development Documentation on the Mono Project page. For anyone with experience using WCF under Mono, are ...
24
votes
2answers
4k views

DotGNU vs Mono

DotGNU and Mono seem to be attacking the same problem - namely implementing the .NET CLR in a free, open-source way with an eye to cross-platform compatibility. I've been reading quite a bit about ...
22
votes
13answers
4k views

Viability of C#/.NET as the new standard game dev platform?

For a long time now C++ has been the dominate game development language. Many AAA quality 3D engines are available to fit any budget. My question is, with the rise of XNA, has C# and the .NET ...
21
votes
7answers
26k views

Monodroid Free Alternative? (.NET on Android)

I have some complex C# libraries I want to be able to use on Android, and whilst searching for .NET on android, I stumbled across MonoDroid. It seemed fine and dandy until I saw the price, which was ...
21
votes
2answers
8k views

Is it possible to get an ASP.NET MVC 3 project working under Mono 2.10?

Mono 2.10's release notes suggest support for ASP.NET MVC 3.0 and Razor using XSP. Upon opening a newly created ASP.NET MVC 3.0 default project (created with Visual Studio 2010) in MonoDevelop 2.4.2 ...
21
votes
1answer
4k views

ASP.NET MVC 2 on mono

Is it possible to run the new ASP.NET MVC 2 Preview 2 on mono?
21
votes
2answers
2k views

Mixing C# with Objective-C

I would like to use larger body of C# code as a library for Objective-C (Cocoa) application. I discovered MonoMac project which wraps Cocoa code, but I would rather have standard Cocoa application ...
21
votes
1answer
617 views

F# crashes on Mono 2.10

After reading some reports about the inadequacies of the Mono 2.6 garbage collector, I decided to give Mono 2.10 a go. I found that the 2.10 runtime crashes with the following simple F# program: let ...
20
votes
3answers
6k views

How big is an Objective-C iPhone app vs. a MonoTouch app?

I am considering using MonoTouch for some iPhone development, but payload size is an important factor. For a user who has never installed Mono on their iPhone before, what would the size of an ...
20
votes
1answer
4k views

How does Mono for Android work?

I am interested in how Mono for Android (by Novell) works. My biggest question is around the actual runtime's that are used. Is MfA providing a Mono runtime that wraps and calls down to the Dalvik ...
20
votes
1answer
1k views

How do I host multiple MVC3 sites on a single virtual host running Apache2?

I'm trying to configure mod_mono with Apache2 on OSX. I would like to run multiple MVC3 projects on the same virtual host, but for some reason only the first one listed is working. Any help on this ...
19
votes
9answers
2k views

Best practices for portable C#

I am looking to write some C# code for linux/windows/mac/any other platform, and am looking for best practices for portable code. Project mono has some great porting resources. What are the best ...
19
votes
11answers
6k views

Best Linux distribution for running Mono [closed]

I'm a .Net developer and would like to investigate building and running our framework on Mono. If the initial project is successful I will happily invest in an OS learning curve, but right now I ...
18
votes
9answers
2k views

Mono created features available on .NET?

I noticed the following today: Mono at the PDC 2008? My talk will cover new technologies that we have created as part of Mono. Some of them are reusable on .NET (we try to make our code cross ...
18
votes
5answers
540 views

What is the use case for this inheritance idiosyncrasy?

When inheriting an inherited class, the new / override behaviour is not what I would expect: $ cat Program.cs using System; class A { public virtual void SayHi() { ...
18
votes
7answers
13k views

Mono performance

Are there any performance benchmarks for Mono compared to say Java in GNU/Linux? Have you ever tested Mono's performance?
18
votes
3answers
2k views

How can I conditionally compile my C# for Mono vs. Microsoft .NET?

I need a conditional compilation switch that knows if I am compiling for the mono or MS .NET runtime. How can I do this?
18
votes
1answer
3k views

P/Invoke in Mono

What's the current status of Mono's Platform Invoke implementation on Linux? And on Solaris?
18
votes
5answers
12k views

How do I get the available wifi APs and their signal strength in .net?

Is there any way to access all WiFi access points and their respective RSSI values using .NET? It would be really nice if I could do it without using unmanaged code or even better if it worked in mono ...

1 2 3 4 5 90