让我们举个例子:
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
中使用它,并且在使用此扩展和其他方法调用的情况下进入,然后每次我进入{{ 1}}方法,我们可以跳过吗?使用MakeString()
?或通过其他方式?