gpt4 book ai didi

windows-store-apps - 错误 CS0117 : 'System.Type' does not contain a definition for 'GetTypeCode'

转载 作者:行者123 更新时间:2023-12-04 00:12:58 25 4
gpt4 key购买 nike

有人可以帮助我学习如何阅读和浏览 msdn 文档吗?

这在 .net 4.0+ 中不支持吗?

using System;

...

public static bool IsPositive( object Value, bool ZeroIsPositive )
{
switch ( Type.GetTypeCode( Value.GetType() ) )
{
case TypeCode.SByte:

我发现很难通过文档找到自己的方式并知道什么特别适用于 Windows 应用商店应用......

最佳答案

Type.GetTypeCode()在完整的 .NET 应用程序和非应用商店可移植类库中受支持,但在 Windows 应用商店应用程序中不受支持。

如果你看 Type class documentation in .NET 4.5 ,您可以在 Windows 应用商店应用支持的所有成员旁边看到一个绿色购物袋。

您还可以查看每个成员的页面底部。例如, Type.GetArrayRank 有这个:

Version Information
.NET Framework
Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0
.NET Framework Client Profile
Supported in: 4, 3.5 SP1
Portable Class Library
Supported in: Portable Class Library
.NET for Windows Store apps
Supported in: Windows 8



... 而 Type.GetTypeCode 已:

Version Information
.NET Framework
Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0
.NET Framework Client Profile
Supported in: 4, 3.5 SP1
Portable Class Library
Supported in: Portable Class Library



(请注意没有提及 Windows 应用商店。)

关于windows-store-apps - 错误 CS0117 : 'System.Type' does not contain a definition for 'GetTypeCode' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13468864/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com