c# 扩展方法
2021-03-21 05:26
标签:中间件 参数 字符 syn stat bsp line space 常见 c# 扩展方法 标签:中间件 参数 字符 syn stat bsp line space 常见 原文地址:https://www.cnblogs.com/wangdash/p/11825960.html{ ///
class Program
{
static void Main(string[] args)
{
{
int? i = 10;
Console.WriteLine(i.ToInt());
}
{
int? i = null;
Console.WriteLine(i.ToInt());
}
{
string text = "此时已莺飞草长爱的人正在路上";
Console.WriteLine(text.ToLength(10));
}
Console.Read();
}
}