1
vote
2answers
23 views
How to create OSX Package that runs Mono application “natively” (Bootstrapper)
Instead of requiring my users to drop to Terminal and start my app via mono <x> command, I'd like to give them an experience of clicking on "X.app" and Mono runtime launches my .NET assemblies.
…
0
votes
0answers
11 views
System.TypeLoadException (WebPartsZone) in mono
I load a user control in a web page which throws an exception:
this.LoadControl(someusercontrol); // throws TypeLoadException
The details :
System.Reflection.ReflectionTypeLoadException: The …
2
votes
4answers
64 views
C# Baseline Resources
Time to ask the pros, since I can't find a good answer anywhere else and I'm venturing into a side of the world that I'm just learning.
I'm in a primarily open source shop that has recently begun …
0
votes
5answers
98 views
Learning ASP.NET MVC on Mac OS X
I realize this is a bit insane, C# being a Windows language and all, but I want to start learning C# mostly because I'm interested in ASP.NET MVC. I work as a web developer by day and my office is …
0
votes
1answer
19 views
GTK# .NET Application without requiring separate GTK# Install
I was playing around with developing C# apps using MonoDevelop on windows and found that I like using GTK# instead of winforms. However, as far as I could tell so far you cannot just embed the GTK# …
2
votes
2answers
85 views
Alternative languages with MonoTouch
MonoTouch is always mentioned along with C#. Are the framework and toolset actually limited to C#, or do other CLR languages like IronRuby and F# work as well?
0
votes
1answer
14 views
mono, xsp2, npgsql Could not load assembly
Hi!
I am writing web service and I have two classes:
<%@ WebService Language="C#" Class="CairoParts.ProductsInfoWS.ProductsInfoWS.cs" %>
using System;
using System.IO;
using …
3
votes
2answers
46 views
Why would a self-hosted service hang after handling one response running on Mono?
I'm having trouble with a simple self-hosted WCF service, using basic HTTP binding on Mono. When I run the service on .NET, everything works fine. When I run the server on Mono, the first request …
4
votes
1answer
63 views
Mono Resources for Cross Platform Development
Is there a site or repository of information about Cross Platform development in mono? Obviously I know about Moma, and the Cross Platform Guidlines and I am using the Visual Studio Tools to run and …
1
vote
3answers
75 views
Is there a mono (.Net) equivalent to the Scanner-class in Java
In Java there is a nice class called Scanner for reading strings and streams of a certain format to data-structures like integers, floats,... Is there any equivalent in Mono? In .Net there is a …
1
vote
2answers
35 views
“Organize imports” in MonoDevelop
When developing for Java in Eclipse, I can hit Ctrl+Shift+O to "Organize Imports", to have the IDE figure out which libraries I'm likely trying to use, and import them automatically.
Is there is a …
2
votes
2answers
60 views
Developing GUI projects with MonoDevelop on Snow Leopard
I just installed MonoDevelop on my Mac (Snow Leopard). I'm a .NET developer, but have no Mono experience.
I want to create a simple GUI app, but there doesn't seem to be a Gtk# 2.0 template under …
2
votes
3answers
189 views
Is MonoTouch a viable platform for iPhone development?
MonoTouch seems like a great platform for iPhone development, but I'm concerned about deploying it to the Apple Store. Are there any examples of applications built with it that are currently available …
0
votes
1answer
37 views
System.Data.SqlClient used in System.Data?
I have had that weird error this afternoon... I cannot figure out why System.Data could rely on System.Data.SqlClient.
This happens in Mono under Linux, and I do not rely on SQL Server at all, by the …
1
vote
3answers
41 views
mono problems with parallel extensions
i have a program written in visual studio 2008 c# which uses
System.Threading.Tasks.Paralell.For(...
now i want to run it in linux environment using mono, is it possible? if so how?
…
