0
votes
2answers
41 views
System.Windows.Forms.Timer event doesn’t fire at all when run under mono
I compiled my application with monodevelop. And tried to run with mono on Linux. It seems that the System.Windows.Forms.Timer objects' tick event never fires.
It runs without prob …
0
votes
2answers
48 views
Parameters passed by reference come back garbage using P/Invoke
I am using Mono/C# on Linux and have the following C# code:
[DllImport("libaiousb")]
extern static ResultCode QueryDeviceInfo(uint deviceIndex,
ref uint PID, ref uint nameSiz …
0
votes
2answers
35 views
Mono / Lighttpd - Garbage text added to SVG file returned via Response.Write()
I am developing a web application that manages a population of plants. One feature of the application is the ability to view relationships between plants as a graph. This visualisa …
1
vote
2answers
62 views
How to pass an unsigned long to a Linux shared library using P/Invoke
I am using C# in Mono and I'm trying to use pinvoke to call a Linux shared library.
The c# call is defined as:
[DllImport("libaiousb")]
extern static ulong AIOUSB_Init();
…
3
votes
2answers
99 views
What are some things Mono is not a good fit for?
I've started your typical web project from scratch using the Mono platform. You know, web services, a UI, MySQL database, all that. I've heard around the net that it's not a pictur …
3
votes
1answer
50 views
Get MAC Address in linux using mono
How do I get the MAC address of my computer in a Mono application on Linux?
2
votes
4answers
39 views
check internet connection in linux using mono?
is there any way to check internet connection status in linux using mono
0
votes
1answer
40 views
mono, unix sockets
Hi!
Does anyone know an example of c# (mono) application that creates unix domain socket and listens to it async way?
2
votes
3answers
109 views
Catch text before it’s pasted into textview.
I have a textview and when something is pasted into it from the clipboard I need to intercept that text and do some preprocessing on it before it ends up in the textview.
I've tri …
2
votes
4answers
204 views
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 .NET. Does anyone have any ex …
0
votes
2answers
73 views
What is the equivalent of timestamp/rowversion (SQL Server) with PostgreSQL
Could someone help me find the equivalent of Timestamp/Rowversion (SQL Server) with PostgreSQL?
I'm using NHibernate on Mono (UNIX).
I think that Timestamp (PostgreSQL) is the e …
1
vote
0answers
88 views
Ubuntu 9.10 + MonoDevelop + Debug + NUnit
I am a Linux noob and I would like to debug a unit test.
If I run my test in MonoDevelop it goes green but if I try to debug everything freeze and I have to stop the debugger. My …
1
vote
3answers
66 views
Do all dependencies used in a mono project need to be compiled with mono.
Let say I started a C# project under Windows (Visual Studio 2008) and I want to switch to Mono. Do I have to recompile all the dependencies my project uses, e.g., NHibernate and ev …
2
votes
2answers
54 views
Why doesn’t CTRL-D send EOF in mono?
Take the following C# file, the simplest possible repro of my problem:
using System;
using System.IO;
public static class Test
{
public static void Main(string[] args)
{
…
11
votes
11answers
595 views
Is MonoTouch worth the cost or should I just learn 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# …
