diff --git a/ATypeScanner/ATypeScanner.csproj b/ATypeScanner/ATypeScanner.csproj index 9e082d8..faff0bf 100644 --- a/ATypeScanner/ATypeScanner.csproj +++ b/ATypeScanner/ATypeScanner.csproj @@ -3,7 +3,7 @@ netstandard2.0 Copyright (c) 2023 Carl Berg - 0.2.0 + 0.2.0-preview.0 Carl Berg An appeasing light weight type scanner MIT diff --git a/README.md b/README.md index 003fe97..58e0873 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,14 @@ var matches = new TypeScanner(typeof(IMyInterface).Assembly) .FindImplementationsOf(); ``` -## Search for implementations of a open class or interface +## Search for closed implementations of a open class or interface ```cs var matches = new TypeScanner(typeof(IMyInterface<>).Assembly) .FindClosingImplementationsOf(typeof(IMyInterface<>)); ``` + +## Search for open implementations of a open class or interface +```cs +var matches = new TypeScanner(typeof(IMyInterface<>).Assembly) + .FindOpenImplementationsOf(typeof(IMyInterface<>)); +```