9

This was addressed and fixed in VS2015 Update 1


Is there any way to show the Exceptions in VS2015?

VS2015

]([![https://i.stack.imgur.com/OzkPi.png

VS2013

onewaytofindout
  • 167
  • 1
  • 11
  • Your images doesn't have _any_ exception. They are methods, properties and fields etc.. – Soner Gönül Jul 23 '15 at 14:32
  • 2
    Think this means exceptions that the methods can throw such as `System.ArgumentOutOfRangeExcpeption` as seen in the vs2013 image. – Ric Jul 23 '15 at 14:36
  • [Close](https://msdn.microsoft.com/en-us/library/system.windows.window.close.aspx) doesn't have exceptions. So question is poor as it is now. Can you show the *same* method intellisense tooltip for both versions? – Sinatr Jul 23 '15 at 14:41
  • 2
    Your top screenshot is using C++ whilst the bottom one uses C#, have you tried using C# in 2015? – Sayse Jul 23 '15 at 14:41
  • 1
    If you look at VS2015 https://msdn.microsoft.com/en-us/library/hcw1s69b.aspx VS2013 https://msdn.microsoft.com/en-us/library/hcw1s69b(v=vs.120).aspx You can see how the "List Members" and "Parameter Info" changed. In VS2015 you no longer have the "Exceptions:" portion – onewaytofindout Jul 23 '15 at 15:43
  • I edited the top image to reflect the same method in VS2015 – onewaytofindout Jul 23 '15 at 15:54
  • 4
    vote on http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/9394263-show-exceptions-in-intellisense – juFo Aug 19 '15 at 12:24
  • Possible duplicate of [VS 2015 IntelliSense: Exceptions Thrown not Previewed](http://stackoverflow.com/questions/31792546/vs-2015-intellisense-exceptions-thrown-not-previewed) – Burgi Jan 07 '17 at 15:33
  • @burgi it is mine was first. – onewaytofindout Jan 09 '17 at 02:04
  • However, the one marked as a duplicate has an accepted answer. – Burgi Jan 09 '17 at 08:37

1 Answers1

1

It no longer appears to show up in the intellisense tooltip until you actually write the code. Once the code is there hovering your mouse over it makes it appear in full.

Note: This appears to have only been fixed in Visual Studio 2015 Update 1

enter image description here

MikeS159
  • 1,884
  • 3
  • 29
  • 54