From 21ab6822f169f1e7c9517cf70563b384e361fa40 Mon Sep 17 00:00:00 2001 From: Edward Miller Date: Sat, 14 Sep 2024 00:11:34 -0500 Subject: [PATCH] fix warning --- Maui.DataGrid/Extensions/ReflectionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maui.DataGrid/Extensions/ReflectionExtensions.cs b/Maui.DataGrid/Extensions/ReflectionExtensions.cs index fb4d5f3..0227a94 100644 --- a/Maui.DataGrid/Extensions/ReflectionExtensions.cs +++ b/Maui.DataGrid/Extensions/ReflectionExtensions.cs @@ -33,7 +33,7 @@ internal static class ReflectionExtensions } [return: DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] - public static Type? GetPropertyTypeByPath([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] this Type type, string path) + public static Type? GetPropertyTypeByPath([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] this Type type, string path) { if (type == null) {