Search Results

3
votes

Does Mono .NET support and compile C++ / CLI?

We don't have a compiler for C++/CLI, it would be a very large undertaking for a very small userbase. Consider also that the C++/CLI spec is inherently flawed and non-portable, so being able to com …
12
votes

How do I code a Mono Daemon

You should implement a service and use mono-service. Google for it and you'll find several examples. …
3
votes

With this technology, would it be possible to compile and run silverlight IL in Flash?

I'm sure a really good and dedicated hacker, able to change both the mono runtime and the flash player, could get a trivial hello-world-like program to run in a few months of work. That said, imple …
3
votes

How do to set run time options when embedding mono?

--config -> mono_config_parse () --trace -> mono_jit_set_trace_options () --runtime -> mono_jit_init_version () --verbose and --optimize -> mono_set_defaults () and mono_par …
2
votes

How to decode wav, mp3, and/or ogg in .Net/Mono?

For simple support for WAV files you can look at mono's implementation in mcs/class/System/System.Media/AudioData.cs ( …
1
vote

Zlib for Mono/.Net without a known Checksum

Just use DeflateStream instead of GZipStream. …
4
votes

C# mono p/invoke failure

You could run the program with gdb and see exactly where the SEGV happens (see the mono wiki for instructions). A likely c …
2
votes

Using Precompiled .NET Assembly DLL in Mono?

The likely issues are that the assembly is not put in the same directory as the program or that the case sensitivity of the assembly file name is not preserved when it was copied. For example, you …
2
votes

PerlEmbed - C# - Mono - Linux

It fails on perl_parse() because your binding is incorrect. The argv argument is a char** (to be interpreted as an argc-sized array of char*): this has no relation to StringBuilder, which r …
4
votes

Embedding Mono - Overhead of a native -> managed context switch.

The current API for invoking a managed method from C code has these kinds of overhead: It does some locking and hash lookup operations to see if the method you're calling and a synthe …
4
votes

Overhead of Mono Tasklet/Co-Routines

If I didn't count wrong, your code does more than 2 million yields per second, which should be roughtly in the same ballpark as stackless python. Considering that mono will usually execute …