我需要在我的UWP平台中访问Type.GetProperties,但我的Type类滞后于该方法。
在我看来,这是因为我们在UWP中使用的子集方法,但是在尝试查找信息时,我发现:Type.GetProperties() doesn't work in Release因此该方法确实存在于UWP中。
如果我转到Type的定义,第一行是这样的:
#region Assembly System.Runtime, Version=4.0.20.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Users\JoséÁngel\.nuget\packages\System.Runtime\4.0.20\ref\dotnet\System.Runtime.dll
#endregion
我的nuget配置可能有问题吗?
项目的条件编译符号为:
NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS
我尝试使用和不使用“使用.NET Native工具链编译”选项。
目标是通用Windows
目标版本是:Windows 10(10.0; Build 10586) Min版本是:Windows 10(10.0; Build 10240)
但我也试过Min版本:Windows 10(10.0; Build 10586)
在NuGET中,该项目只有Microsoft.NETCore.UniversalWindowsPlatform v5.0.0
答案 0 :(得分:6)
将您的类型添加到.net原生动态列表中,如链接问题的答案中所述,然后使用*yourthing*.GetType().GetTypeInfo().DeclaredProperties
。
https://msdn.microsoft.com/en-us/library/system.reflection.introspectionextensions.gettypeinfo%28v=vs.110%29.aspx https://msdn.microsoft.com/en-us/library/system.reflection.typeinfo%28v=vs.110%29.aspx
有关详细信息,请参阅此帖子中的反射部分:https://blogs.msdn.microsoft.com/dotnet/2016/02/10/porting-to-net-core/