예제 #1
0
            public bool Exclude(StackFrameName frame)
            {
                string v = frame.Value;

                return(v.Contains("Microsoft.ExtendedReflection") ||
                       v.Contains("___redirect") ||
                       v.Contains("___lateredirect") ||
                       v.Contains("__Substitutions") ||
                       v.Contains("mscorlib") ||
                       v.Contains("System.Reflection"));
            }
예제 #2
0
 public bool Exclude(StackFrameName frame)
 {
     string v = frame.Value;
     return v.Contains("Microsoft.ExtendedReflection") ||
         v.Contains("___redirect") ||
         v.Contains("___lateredirect") ||
         v.Contains("__Substitutions") ||
         v.Contains("mscorlib") ||
         v.Contains("System.Reflection");
 }