Hello,
i always worked with MonoDevelop. Since the last Unity Update it comes with Visual Studio - so i try to use Visual Studio now. But there is a thing i dont understand with the auto completion (intellisense).
Example Variables
int MyTableHeight = 0;
int MyTableWidth = 0;
If i write code in MonoDevelop:
If i write “MyH” the auto completion offers me “MyTabletHeight”
If i write “MyTW” it offers me “MyTabletWidth”
If i write “v3” it offers me “vector3”
So you see, thats really nice.
But if i write code in Visual Studio it just works that bad:
If i write “MyH” it will offers me nothing
If i write “MyTW” it offers me also nothing
If i write “MyTable” it will offers me somthing - but both MyTableHeight and MyTableWidth, so i need to choose the correct one with arrows.
If i write “v3” also just nothing.
I need to write “vect” to get an offer of "vector2, vector3 and vector4 and need to manually select the correct one with arrows.
So you see, this is really bad ![]()
The question:
Is there a way to get the nice code completion from MonoDevelop also in Visual Studio?
Thanks!