System.Type.GetTypesInNamespace(string)

Here are the examples of the csharp api System.Type.GetTypesInNamespace(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : ReflectionExtensions.cs
with GNU General Public License v3.0
from IgiCodes

public static IEnumerable<Type> GetAllSubtypesInNamesapce(this Type type) => type.GetTypesInNamespace(type.Namespace).Where(t => !t.IsAbstract && t.IsPublic && t.IsSubclreplacedOf(type));