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# Objects Loops and Final Touches Static Members

where did I go wrong?

I keep getting an error CS0103 stating something to the effect that the word Math doesn't exist. What am I missing?

RightTriangle.cs
namespace Treehouse.CodeChallenges
{
    class RightTriangle
    {
        public static double CalculateHypotenuse( double sideOne, double sideTwo)
        {
            double sideThree = Math.Sqrt((sideOne * sideOne) + (sideTwo * sideTwo));   
            return sideThree;
        }
    }
}

1 Answer

Steven Parker
Steven Parker
229,644 Points

You forgot the "using System;" directive to give the code access to the System namespace (where Math is located).

Thanks Steven! I can always count on you.