Files
freeCodeCamp/guide/english/csharp
justingiffard 97834c64d2 Fixed example 2 so that its runnable (#22328)
added some some time consuming code and a return to `CalcDamage`
removed `static` from `CalcTotalDamage` so that the compiler doesn't complain that `CalcDamage` should be static
compiler wasn't happy with `totalDamage += CalcDamage(player);` or `return await Task.WhenAll(totalDamage)` because you are attempting to assign a Task to an int. Fixed it by using `WhenAll` correctly
Changed parameter name of `CalcTotalDamage` from `group` to `people` as  `group` can  be confusing to read as its used with linq
2019-02-24 18:36:06 -07:00
..
2018-12-15 05:12:53 -08:00
2019-01-15 16:57:39 -05:00
2018-10-31 21:08:37 -07:00
2018-12-10 18:08:53 -05:00
2018-11-23 22:41:27 -05:00