Skip to content

Commit 3e0ea20

Browse files
authored
Update README.md
1 parent 0a5a4a3 commit 3e0ea20

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ A set of Type and Reflection polyfill extension methods for .NET Standard v1.0 a
1010
* Type.IsAbstract()
1111
* Type.IsAnonymous()
1212
* Type.IsClass()
13+
* Type.IsClosedTypeOf(Type genericTypeDefinition)
1314
* Type.IsAssignableTo(Type type)
1415
* Type.IsDerivedFrom(Type parentType)
1516
* Type.IsEnum()
1617
* Type.IsInterface()
1718
* Type.IsGenericType()
1819
* Type.IsPrimitive()
20+
* Type.IsPublic()
1921
* Type.IsSealed()
2022
* Type.IsValueType()
2123
* Type.GetAttributes()
@@ -92,6 +94,14 @@ A set of Type and Reflection polyfill extension methods for .NET Standard v1.0 a
9294
* Type.GetNonPublicInstanceMembers(string name)
9395
* Type.GetNonPublicInstanceMember(string name)
9496

97+
### Operator Retrieval:
98+
99+
* Type.GetOperators(Action<OperatorSelector> matcher = null)
100+
* Type.GetImplicitOperators()
101+
* Type.GetImplicitOperator(Action<OperatorSelector> matcher = null)
102+
* Type.GetExplicitOperators()
103+
* Type.GetExplicitOperator(Action<OperatorSelector> matcher = null)
104+
95105
### Assembly Info:
96106

97107
* Assembly.GetAllTypes()
@@ -108,4 +118,4 @@ A set of Type and Reflection polyfill extension methods for .NET Standard v1.0 a
108118

109119
### Download
110120

111-
You can download and install using [the NuGet package](https://www.nuget.org/packages/AgileObjects.NetStandardPolyfills/), or clone the repository [on GitHub](https://github.com/agileobjects/NetStandardPolyfills).
121+
You can download and install using [the NuGet package](https://www.nuget.org/packages/AgileObjects.NetStandardPolyfills), or clone the repository [on GitHub](https://github.com/agileobjects/NetStandardPolyfills).

0 commit comments

Comments
 (0)