例如
bool TryGetValue(out object value);
与
class ReturnType { public bool Found {get;set;} public object Value {get;set;} } ReturnType TryGetValue();
除了减少代码行数之外,何时应该使用out参数以及何时应该返回返回类型?
例如. TryParse将返回一个bool,指示成功/失败,同时使用out值作为结果.这避免了必须抛出异常.