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 Foreach Loops

c# help!!! error CS0165: Use of unassigned local variable `totalTongueLength'

not sure where im going wrong here

FrogStats.cs
namespace Treehouse.CodeChallenges
{
    class FrogStats
    {
        public static double GetAverageTongueLength(Frog[] frogs)
        {

            int totalTongueLength;

            foreach(Frog frog in frogs)
            {

                totalTongueLength += frog.TongueLength;

            }

            return totalTongueLength / frogs.Length;

        }
    }
}
Frog.cs
namespace Treehouse.CodeChallenges
{
    public class Frog
    {
        public int TongueLength { get; }

        public Frog(int tongueLength)
        {
            TongueLength = tongueLength;
        }
    }
}

2 Answers

You need to initialize totalTongueLength to zero when it is defined.

thank you that worked, but i was under the impression that when u declare a variable of type int its default value was 0

thank you that worked, but i was under the impression that when u declare a variable of type int its default value was 0

Nope, it is undefined and that is a big problem.