Visual Studio 2012 Intellisense Showing Deprecated Functions?

Hello everyone, this post is aimed at people who are using Visual Studio as a script editor, but I noticed that Intellisense from VS 2012 would include deprecated functions such as Random.RandomRange. Is there any way to hide though deprecated functions? As far as I know, MonoDevelop doesn’t have that issue. This isn’t extremely important but it’s starting to frustrate me. Thanks :slight_smile:

Nope. That’s up to the code author to do by disabling it with an EditorBrowsable attribute. However, if you use Resharper, it will cross out the method names that are deprecated (if you use Resharper’s intellisense instead of the built in VS), making them easy to recognize.

Alright, thank you very much and I will check out ReSharper.