方法 | 描述 |
---|---|
As |
将字符串转换为指定数据类型的强类型值。 |
As |
将字符串转换为指定的数据类型,并指定默认值。 |
AsBool(String) | 将字符串转换为布尔值 (true/false)。 |
AsBool(String, Boolean) | 将字符串转换为布尔值 (true/false),并指定默认值。 |
AsDateTime(String) | 将字符串转换为 DateTime 值。 |
AsDateTime(String, DateTime) | 将字符串转换为 DateTime 值,并指定默认值。 |
AsDecimal(String) | 将字符串转换为 Decimal 数字。 |
AsDecimal(String, Decimal) | 将字符串转换为 Decimal 数字,并指定默认值。 |
AsFloat(String) | 将字符串转换为 Single 数字。 |
AsFloat(String, Single) | 将字符串转换为 Single 数字,并指定默认值。 |
AsInt(String) | 将字符串转换为整数。 |
AsInt(String, Int32) | 将字符串转换为整数,并指定默认值。 |
Is |
检查字符串是否可以转换为指定的数据类型。 |
IsBool | 检查字符串是否可以转换为 Boolean (true/false) 类型。 |
IsDateTime | 检查字符串是否可以转换为 DateTime 类型。 |
IsDecimal | 检查字符串是否可以转换为 Decimal 类型。 |
IsEmpty | 检查字符串值是否为 nullptr 或空。 |
IsFloat | 检查字符串是否可以转换为 Single 类型。 |
IsInt | 检查字符串是否可以转换为整数。 |
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日