Exemple #1
0
 public static IEnumerable <Type> DescendantsAndSelf(Type type)
 {
     if (type == null)
     {
         throw new ArgumentNullException(nameof(type));
     }
     return(TypeTree.DescendantsAndSelf(type));
 }