Error CS0117: 'System.Type' does not contain a definition for 'GetTypeCode'
问题 Can someone please help me learn how to read and navigate the msdn docs? Is this not supported in .net 4.0+ ? using System; ... public static bool IsPositive( object Value, bool ZeroIsPositive ) { switch ( Type.GetTypeCode( Value.GetType() ) ) { case TypeCode.SByte: I'm finding it very difficult to find my way through the docs and know what applies to Windows Store Apps specifically... 回答1: Type.GetTypeCode() is supported in full .NET apps and non-Store portable class libraries, but not in