AsgQuizzes.Quizzes.GetOddNumbers C# (CSharp) Method

GetOddNumbers() public method

public GetOddNumbers ( int n ) : int[]
n int
return int[]
        public int[] GetOddNumbers(int n)
        {
            // HINT: This method must be implemented with a call this.GetSatisfyingNumbers
            throw new NotImplementedException();
        }