tagged [mono]

Xamarin vs. Mono vs. Monodevelop

Xamarin vs. Mono vs. Monodevelop What is the relationship between [Xamarin](http://www.xamarin.com) and [Mono](http://www.mono-project.com/Main_Page)(Are they the same product)? Is the Monodevelop IDE...

How to run a Windows Forms application on macOS?

How to run a Windows Forms application on macOS? Is it possible to run a Windows Forms application (developed using Visual Studio on Windows) on macOS? What would be needed? Is it free or would I have...

3 Dec at 16:31

How do I use Travis-CI with C# or F#

How do I use Travis-CI with C# or F# Travis CI continuous integration service officially supports many [languages](http://about.travis-ci.org/docs/#Specific-Language-Help), but not C# or F#. Can I use...

22 Mar at 13:57

Develop Android app using C#

Develop Android app using C# Is it possible to write an android app using C#? Is there an API or something? Is it free for personal and commercial development? What do I need to install to have androi...

31 Jan at 00:10

Where to set <gcAllowVeryLargeObjects>?

Where to set ? I'm working on a little program on sorting lists. Now, I need an array that requires more than 2GB of RAM. During my research, I found the property, but I don't know where so set it. I'...

6 Feb at 14:48

Calling UNIX and Linux shared object file .so from c#

Calling UNIX and Linux shared object file .so from c# Is there a way for a Shared Object file written in C and built on Unix to be called from C# P/Invoke? Or do I need to use Java or something like t...

21 Nov at 09:44

What is the best way to run ServiceStack on Linux / Mono?

What is the best way to run ServiceStack on Linux / Mono? Listed on the [ServiceStack website](http://www.servicestack.net) it shows that ServiceStack can run on Mono with either: - - - - What are the...

30 Aug at 00:31

Which Linux distribution is best for developing a Mono application in a virtual machine?

Which Linux distribution is best for developing a Mono application in a virtual machine? I've been a Windows user since forever, and now I need Linux to create an application using Mono. Which Linux d...

4 Jun at 00:10

How Reliable is Mono on Linux vs .NET on Windows?

How Reliable is Mono on Linux vs .NET on Windows? I am trying to decide upon using Mono with C# or Python (Django) for a Linux based Web Site. My concern with C# is that Mono may not be as reliable as...

13 Nov at 22:40

Compiler #if directive to split between Mono and .NET

Compiler #if directive to split between Mono and .NET I need to dual-compile a class library for Mono on the Mac and .NET on the PC. There are some minor changes I want to make, but I was hoping to sp...

10 Dec at 08:23

.NET / Mono Database Engine

.NET / Mono Database Engine Are there any DB engines that are implemented entirely in .NET and Mono compatible? I would like to have a DB solution that will run on all platforms via Mono so that I don...

2 Aug at 17:10

How to serialize/deserialize to `Dictionary<int, string>` from custom XML not using XElement?

How to serialize/deserialize to `Dictionary` from custom XML not using XElement? Having empty `Dictionary` how to fill it with keys and values from XML like and serialize it back into XML not using XE...

12 Jun at 02:11

Adding custom attributes using mono.cecil?

Adding custom attributes using mono.cecil? I can't figure how to add custom attribute to a method using Mono.Cecil The attributes that I would want to add is like this : Does anyone know how to add cu...

5 Dec at 16:8

mkbundle on Mac with Mono: "mono/metadata/mono-config.h" file not found

mkbundle on Mac with Mono: "mono/metadata/mono-config.h" file not found I'm trying to create a Mac bundle with Mono. When I execute: I get this during compilation: Am I missing something?

20 Dec at 19:21

voice recognition in mono

voice recognition in mono Is there any way to add voice recognition feature to mono application. There are a System.Speech (in .net) and Microsoft.Speech (in MS Speech Platform) namespaces, but I can'...

Executing PE files in ASP.Net on Linux without using Mono

Executing PE files in ASP.Net on Linux without using Mono Can anyone tell me is it possible to executing '.exe' or '.dll' file(s) to run Asp.net on Linux server? I know its possible with the use of Mo...

13 Jul at 08:58

How do I access GUI (GTK) from multi threads?

How do I access GUI (GTK) from multi threads? I have a worker thread spawned from a GUI (for GUI performance), how do I access GUI, such as spawning new windows/widgets from the thread itself? I tried...

8 Jun at 04:39

Best practices for portable C#

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](http://go-mono.org) has ...

3 Nov at 13:30

WCF support in Mono

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](http://www.mono-project.com/WCF_D...

5 Oct at 14:17

Does ServiceStack has some options like singleton in WCF?

Does ServiceStack has some options like singleton in WCF? In WCF, we can create a singleton service so everyone could access to a same instance like a static class. Recently considering use ServiceSta...

22 Aug at 09:4

Running ServiceStack on Mono on OSX

Running ServiceStack on Mono on OSX Trying to get ServiceStack working on OSX - currently getting a file not found error on System.Web.Entity.dll Is there a Nuget I need to pull in or do I need to do ...

10 Dec at 12:7

How to migrate a .NET Windows Service application to Linux using mono?

How to migrate a .NET Windows Service application to Linux using mono? What would be the best approach to migrate a .NET Windows Service to Linux using mono? I've been trying to avoid executing the ap...

12 Mar at 10:7

Is developing in Mono cross-platform?

Is developing in Mono cross-platform? In what measure is developing with mono cross-platform? How do I compile for Windows (in Linux), how do I run things in Linux (because there is no .NET JIT compil...

7 Aug at 06:47

Obtain current page name in Xamarin Forms app

Obtain current page name in Xamarin Forms app I am currently trying to understand how to get the name of the (xaml) page I am currently into, with my Xamarin Form app. How am I supposed to do it? I tr...

4 Dec at 22:18

wget/curl in C#

wget/curl in C# I'm writing a scraper in C# and I'd like to download some data to files and submit some forms. I've been using `wget` and `curl` so far for that. How would I do that in C# (on Linux)? ...

6 Mar at 13:27