Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Basics Methods Method Parameters

using System; class Program { static double Multiply(double one, double two) { return one * two;

so this is right and should work but the test window keeps throwing errors what do they want ?

Program.cs
using System;

class Program
{

    static double Multiply(double one, double two) 
    {
        return one * two;    
    }

    static void Main(string[] args)
    {
       double total = Multiply(2.5 , 2);
       Console.WriteLine(total);
       double again = Multiply(6 , 7);
       Console.WriteLine(again);

    }

}

2 Answers

Steven Parker
Steven Parker
229,644 Points

The instructions ask for "a Multiply function that accepts two parameters, multiplies them together, and passes the result to Console.WriteLine." But this one returns the result rather than displaying it.

The new function does not need to return anything (it can be "void").

static void Multiply(double one, double two) { //return one * two; instead print the value

   Console.WriteLine(one*two);

}