From 92f1c37317e7d3ef319dfc6fec45d66bdfa44d66 Mon Sep 17 00:00:00 2001 From: Dennis Doomen Date: Sat, 16 Nov 2024 22:04:56 +0100 Subject: [PATCH] Made all types internal (#18) --- src/Reflectify/Reflectify.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Reflectify/Reflectify.cs b/src/Reflectify/Reflectify.cs index 22d9bc7..9ebdf20 100644 --- a/src/Reflectify/Reflectify.cs +++ b/src/Reflectify/Reflectify.cs @@ -457,7 +457,7 @@ private static IEnumerable GetConversionOperators(this Type type, Ty } } -public static class TypeExtensions +internal static class TypeExtensions { /// /// If the type provided is a nullable type, gets the underlying type. Returns the type itself otherwise. @@ -501,7 +501,7 @@ public static bool HasAttributeInHierarchy(this MemberInfo type) } } -public static class PropertyInfoExtensions +internal static class PropertyInfoExtensions { /// /// Returns true if the property is an indexer, or false otherwise.