本文介绍了 - C#,如何确定类型是否是一个数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一种方法来确定一个给定的.NET类型是否是一个数字?例如: System.UInt32 / UINT16 /双人间都是数字。我想避免在长开关的情况下 Type.FullName


解决方案

试试这个:

 键入类型= object.GetType();
布尔ISNUMBER =(type.IsPrimitiveImple&安培;&放大器;类型= ty​​peof运算(布尔)及!&放大器;类型= ty​​peof运算(char)的!);

Taking Guillaume's solution a little further:

public static bool IsNumericType(this object o)
{
  switch (Type.GetTypeCode(o.GetType()))
  {
    case TypeCode.Byte:
    case TypeCode.SByte:
    case TypeCode.UInt16:
    case TypeCode.UInt32:
    case TypeCode.UInt64:
    case TypeCode.Int16:
    case TypeCode.Int32:
    case TypeCode.Int64:
    case TypeCode.Decimal:
    case TypeCode.Double:
    case TypeCode.Single:
      return true;
    default:
      return false;
  }
}

Usage:

int i = 32;
i.IsNumericType(); // True

string s = "Hello World";
s.IsNumericType(); // False

这篇关于 - C#,如何确定类型是否是一个数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-16 16:42