如何确定类型是否为数字

如何确定类型是否为数字

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

问题描述

有没有办法确定给定的 .Net 类型是否为数字?例如:System.UInt32/UInt16/Double 都是数字.我想避免 Type.FullName 上的长切换案例.

解决方案

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# - 如何确定类型是否为数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 05:24