csharp 通用装换,判断指定字符串能不能转换成指定类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 通用装换,判断指定字符串能不能转换成指定类型相关的知识,希望对你有一定的参考价值。

public static bool Is(this string input, Type targetType)
{
    try
    {
        TypeDescriptor.GetConverter(targetType).ConvertFromString(input);
        return true;
    }
    catch
    {
        return false;
    }
}

以上是关于csharp 通用装换,判断指定字符串能不能转换成指定类型的主要内容,如果未能解决你的问题,请参考以下文章

delphi中类型转换如把一个字符串转成整型,这个装换过程执行了啥操作呢?有点不能理解

进制装换

如何用JS判断某个字符串可以转换成日期?

装换器

java 如何判断字符串是不是可以转换成数字

零基础学C# :判断指定年份是不是闰年