Use OUT to return multiple values
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int number; | |
double mean = ComputeMean(scores, out number); | |
private static double ComputeMean(Tuple<string, Nullable<int>>[] scores, out int n) | |
{ | |
n = 0; | |
int sum = 0; | |
foreach (var score in scores) | |
{ | |
if (score.Item2.HasValue) | |
{ | |
n += 1; | |
sum += score.Item2.Value; | |
} | |
} | |
if (n > 0) | |
return sum / (double) n; | |
else | |
return 0; | |
} |
Use Tuple to return multiple values
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static Tuple<int, int> IntegerDivide(int dividend, int divisor) | |
{ | |
try { | |
int remainder; | |
int quotient = Math.DivRem(dividend, divisor, out remainder); | |
return new Tuple<int, int>(quotient, remainder); | |
} | |
catch (DivideByZeroException) { | |
return null; | |
} | |
} |
No comments :
Post a Comment