Why does MonoDevelop not work for objects?

I am using MonoDevelop 2.4.2, and code completion works fine for everything inside my class. But it does not work for the properties / functions of instances and static classes.

For example, when entering:

this.myFunct - pops up
MyStaticCla - pops up
MyStaticClass.myFun - nothing happens myobject.myPrope - nothing happens

Did I miss something?

+4
source share
2 answers

There seems to be a problem with autocomplete files on mac os x. here is a link to the solution.

http://answers.unity3d.com/questions/121469/monodevelop-not-showing-autocomplete-intellisense.html

+4
source

Unity does not have autocomplete for private variables, static variables, and descriptions of some function methods.

Instead of finding a variable on autocomplete, you should rewrite it and be sure to have the correct spelling.

-one
source

Source: https://habr.com/ru/post/1395758/


All Articles