using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TempTask.WebEntry.Tools
{
///
/// 扩展
///
public static class Extension
{
///
/// 将字符串转换为整数
///
///
/// 转换失败时的默认值
///
public static int ToInt(this string str, int defaultValue = int.MinValue)
{
return int.TryParse(str, out int i) ? i : defaultValue;
}
}
}