Assuming the following method:
int ExtractMedian(int Statistic)
{
    return ExtractionWork;
}
Is it possible to force Statistic to accept only odd numbers like 1, 3, 5 by using ref for example but without checking the value after it is passed?
 
     
     
     
    