摘要: string search = "1311160122251"; string input = "dfsdfsd<在OA中申请Annual Leaveaaaa公司年假 1.0天,申请单号1311160122251><在OA中申请Annual Leave公司年假 1.0天,申请单号1311160122 阅读全文
posted @ 2016-03-01 13:55 直钩钓鱼 阅读(852) 评论(0) 推荐(0)
摘要: ??运算符 ?? 运算符定义在将可以为 null 的类型分配给非可以为 null 的类型时返回的默认值。 C# int? c = null; // d = c, unless c is null, in which case d = -1. int d = c ?? -1; 阅读全文
posted @ 2016-03-01 13:47 直钩钓鱼 阅读(178) 评论(0) 推荐(0)