- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮助我学习如何阅读和浏览 msdn 文档吗?
这在 .net 4.0+ 中不支持吗?
using System;
...
public static bool IsPositive( object Value, bool ZeroIsPositive )
{
switch ( Type.GetTypeCode( Value.GetType() ) )
{
case TypeCode.SByte:
最佳答案
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-store-apps - 错误 CS0117 : 'System.Type' does not contain a definition for 'GetTypeCode' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13468864/
我是一名优秀的程序员,十分优秀!