1

I like Edit-and-Continue very much, so much that I want to find all kinds of things that prevent it from working and move them away into separate methods, change to regular methods or something.

Problem is I can't easily locate them in my code.

Is there some functionality in Visual Studio that allows to browse all those things, or should I just use search with wildcards, or something else completely?

user1306322
  • 8,561
  • 18
  • 61
  • 122
  • 2
    I'm not really sure, if building architecture of your program basing on ease of debugging is such a good idea. – Spook May 09 '13 at 10:53
  • It is, it's an XNA game. And I'm learning programming, so I'd like to speed things up a bit. Leave the safe and high-quality approaches for the release build. – user1306322 May 09 '13 at 10:59
  • It's easier for me to make edits on-the-fly. – user1306322 Aug 19 '13 at 16:49

1 Answers1

2

To lambdas, find (ctrl+f) all => in your code. To delegates, search for all delegate, Func, Action, Predicate.

Daniel Möller
  • 84,878
  • 18
  • 192
  • 214