Questions tagged [monodevelop]

MonoDevelop is an IDE focusing on developing desktop, mobile and web applications using C# and other .NET languages. It's open source and extensible, and runs on Mac, Windows and Linux.

MonoDevelop is the IDE of the Mono Project, an open-source cross-platform implementation of the .NET standards. In addition to the Mono runtime, MonoDevelop supports .NET and C/C++; third-party plugins exist to add support for other languages and runtimes.

Bugs should be filed on the MonoDevelop bug tracker. Please ensure you are using the most recent version of MonoDevelop.

For more in-depth discussions, see the MonoDevelop mailing list and IRC channel.

MonoDevelop was the bundled IDE with the editor up until Unity version 5, in which it was replaced for to edit C# scripts.

2672 questions
28
votes
1 answer

Where's Gtk# 2.12.22 for Windows?

I want to install MonoDevelop on my Windows computer The MonoDevelop website directs me to download GtkSharp 2.12.20 No good - MonoDevelop 4.0.13 requires 2.12.22 When I go to the Mono website, the installer is out of date at 2.12.11 When I got to…
pal
  • 942
  • 1
  • 9
  • 19
28
votes
4 answers

Does UIButton become disabled when its alpha is set to 0.0?

I have a few buttons in my app whose alpha is currently set to zero. These buttons are completely non-responsive, but as soon as I increase their alpha, they begin to respond. Is this expected behavior?
CodeBlue
  • 14,631
  • 33
  • 94
  • 132
26
votes
3 answers

Where can I download the REAL MonoDevelop Windows binaries?

The monodevelop.com website just takes me to this "Xamarin Studio" thing that has severe restrictions on the usage of the free version, and pricing that's almost as bad as Visual Studio on the paid versions! Is MonoDevelop for Windows dead? All I…
ekolis
  • 6,270
  • 12
  • 50
  • 101
25
votes
3 answers

How to go from NSData to byte[]

If I have image data in an NSData, extracted from the image as follows, how do I convert this NSData object into a byte array? NSData data = NSData.FromUrl(NSUrl.FromString(urlString));
BruceHill
  • 6,954
  • 8
  • 62
  • 114
25
votes
3 answers

Best way to make a project with post-build script work on MonoDevelop and Visual Studio?

I have an open source project in which I'm trying to allow development on both MonoDevelop(including *nix) and Visual Studio. One of my recently discovered requirements is I need to copy an outputted file from one directory to another(relative…
Earlz
  • 62,085
  • 98
  • 303
  • 499
24
votes
2 answers

Type of conditional expression cannot be determined as

When I compile my C# project in MonoDevelop, I get the following error: Type of conditional expression cannot be determined as 'byte' and 'int' convert implicitly to each other Code Snippet: byte oldType = type; type = bindings[type]; //Ignores…
Jakir00
  • 2,023
  • 4
  • 20
  • 32
24
votes
5 answers

How to install recent mono and monodevelop?

I tried to install mono and monodevelop on centOS 6.3. After many hours I was able to install mono but failed with monodevelop. I'm really astonished how difficult and time consuming it is, to get a recent mono/monodevelop version on linux…
utopia
  • 470
  • 2
  • 4
  • 13
23
votes
2 answers

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 (Mac OS X), the following DLLs are…
kim3er
  • 6,306
  • 4
  • 41
  • 69
23
votes
2 answers

Monodevelop will not start in Mint 17

I am trying to install MonoDevelop in Linux Mint 17. I have installed both using apt and throught he package manager, but I'm getting the same result. MonoDevelop simply will not start. I try to run it from the command line and I get no output…
ewok
  • 20,148
  • 51
  • 149
  • 254
20
votes
2 answers

How can I add a reference in monodevelop?

I need to work with Json in mono and I'm using the IDE monodevelop. How can I add as a reference json.net in monodevelop ?
johnlemon
  • 20,761
  • 42
  • 119
  • 178
20
votes
3 answers

".. must derive from WebViewPage, or WebViewPage" on MonoDevelop & MVC3 (OS X)

I'm trying to get an MVC 3 Razor project going with MonoDevelop. I've created a new ASP.net MVC 2 project using Mono 2.10.9 / MonoDevelop 3.0.4.7, and copied the below DLL's from an existing Windows-based MVC3 project to the "bin" directory of the…
Mr Chris
  • 1,210
  • 2
  • 12
  • 18
19
votes
2 answers

Reading console input in MonoDevelop

I am trying to a simple C# program that takes input and passes it as output. For instance, the output should be: What is your name? {user input} Your name is {user input} The program is: public static void Main(string[] args) { …
Joseph Burley
  • 373
  • 1
  • 6
  • 14
19
votes
2 answers

MonoDevelop command line compile a solution

The problem is as follows: I have a MonoDevelop project (ASP.NET) on my development workstation. I'm currently at a customer site, without my regular development environment on my laptop (Regulatory Burden). I have SSH access to my development…
qdot
  • 6,195
  • 5
  • 44
  • 95
19
votes
1 answer

Can I make MonoDevelop look good on a Retina display?

I bought a new Retina MacBook Pro to develop for iOS with MonoTouch. It is extremely frustrating that, probably because it is built on Gtk#, MonoDevelop is very blurry. I can cope with blurry UI but I can't read or write code because it hurts my…
Dan Abramov
  • 264,556
  • 84
  • 409
  • 511
19
votes
7 answers

Why is no warning given for this unused variable?

When compiling the following program in VS2010, VS2008 or MonoDevelop on Windows, I get warning CS0219, "The variable 'y' is assigned but its value is never used". namespace Problem { public class Program { private static…
Ergwun
  • 12,579
  • 7
  • 56
  • 83