码迷,mamicode.com
首页 > 其他好文 > 详细

声明变量,一定要用 var!

时间:2016-11-22 07:37:22      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:str   cat   div   public   erro   style   stat   color   err   

public static T TryGet<T>(Func<T> func, T ifError = default(T)) {
    try {
        return func();
    } catch {
        return ifError;
    }
}

string a;
try{ a = doooooooooo(); } catch { a = "wrewre"; }

//this is shit!

var a = TryGet(doooooooooo, "wrewre");

//great!

声明变量,一定要用 var!

标签:str   cat   div   public   erro   style   stat   color   err   

原文地址:http://www.cnblogs.com/ly45/p/6087732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!