I have number of problems with MonoDevelop like sometimes when I write
var a : float = 5.0f;
It won’t let me do it unless I do
var a : float;
a=5.0f;
Also I’m used to VisualStudio and I liked the way it remember all your vars and it autocompletes almost everything