声明变量,一定要用 var!
Posted 大胡子毛绒老头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了声明变量,一定要用 var!相关的知识,希望对你有一定的参考价值。
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!的主要内容,如果未能解决你的问题,请参考以下文章