原理: || 运算时 当满足第一个条件时 就不再执行第二个条件了...
static bool GetResult(int n, ref int sum) { sum += n; return (n - 1 <= 0) || GetResult(n - 1, ref sum); }