4

让我们举个例子:

public static class Extensions
{
    public static string MakeString(this object obj)
    {
        if (obj == null) return string.Empty;

        return obj.ToString();
    }
}

public class ABC
{
    public void Method()
    {
        object obj = default(object);

        //Implemention goes here..

        // Here every time in step into navigate to MakeString() Method.
        if(IsValid(obj.MakeString()))             
        {
            //Operations..
        }
    }

    private bool IsValid(string str)
    {
        //Check if string is valid or not..
        return true;
    }
}

在这个具有扩展方法的示例Extentions类中,并且在课堂中使用它,ABC并且当在此扩展和其他方法调用的条件下进入时,每次我进入MakeString()方法时,我们可以跳过它吗?通过使用method attribute?或通过其他方式?

4

1 回答 1

6

您可以为此使用DebuggerStepThrough属性。

于 2014-05-06T10:57:19.087 回答