Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3697164
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:49:37+00:00 2026-05-19T04:49:37+00:00

I have noticed lately that the Visual Studio 2010 debugger keeps jumping into this

  • 0

I have noticed lately that the Visual Studio 2010 debugger keeps jumping into this method that is marked with the [DebuggerStepThrough] attribute.

Visual Studio 2010 stepping into a DebuggerStepThrough area

The callstack looks something like this:

  1. Page.OnLoad calls a method IsSubclassOfGeneric in a class marked as [DebuggerStepThrough].
  2. IsSubclassOfGeneric calls GetHierarchy as shown, passing a lambda expression to the System.Linq.Enumerable.Any extension.
  3. Visual Studio steps into the method as shown above.

I have just replaced the Linq call with a foreach loop as below, to no avail:

Call to GetHierarchy

This is a bit of an annoyance, since this method is called pretty frequently, and I do not understand why the attribute is being ignored.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T04:49:37+00:00Added an answer on May 19, 2026 at 4:49 am

    Try this simple console application, put break points on the lines indicated, run the debugger and on the first break point, press step into (F11). It should miss the second break point. Otherwsie if might be a visual studio setting/extension messing things up.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    
    namespace tmp {
        class Program {
            static void Main(string[] args) {
                IEnumerable<Type> types = typeof(System.IO.IOException).GetHierarchy(typeof(System.Exception)); //break point here
                int i = 0;
            }
        }
        static class Ext {
            //[DebuggerStepThrough]
            //[DebuggerNonUserCode]
            //[DebuggerStepperBoundary]
            public static IEnumerable<Type> GetHierarchy(this Type type, Type limit) {
                if (type == null) { //break point here
                    throw new Exception();
                }
                do {
                    yield return type;
                    if (type == limit) {
                        yield break;
                    }
                } while ((type = type.BaseType) != null);
            }
    
            [DebuggerStepThrough]
            public static IEnumerable<Type> GetHierarchy2(this Type type, Type limit) {
                if (type == null) { //break point here
                    throw new Exception();
                }
                IList<Type> types = new List<Type>();
                do {
                    types.Add(type);
                    if (type == limit) {
                        break;
                    }
                } while ((type = type.BaseType) != null);
                return types;
            }
        }
    }
    

    EDIT

    Actually i think it has something to do with the yield statement. If i try building a list (GetHierarchy2), i have no problem with the DebuggerStepThrough attribute

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lately I have installed Windows Phone 7 developement tools and noticed that VS2010 unable
I have noticed that the app Reeder is using the UIWebView but ignores this
I have noticed that cURL in PHP returns different data when told to output
I have noticed that some apps like Safari and Mail show a loading indicator
I have noticed that regardless of a given script's execution time, every date() call
I have noticed that my particular instance of Trac is not running quickly and
I have noticed that my geocoder is inconsistent in the code shown below because
I have noticed over the years that different developers have different criteria for what
I have noticed that both IE6 and IE7 push the parent div down when
You may have noticed that we now show an edit summary on Community Wiki

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.