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 trialTiago Ramos
2,380 PointsAm I instantiating the variable correctly?
Hi guys,
I divided the problem in parts and I think I've done all of the parts correctly. Can you point me where my mistake(s) is/are ?
I've worked and tried several aproaches, so I could really use some help now.
Thank you!
using System;
using System.IO;
// should I use this dependency?
using WeatherForecast;
namespace Treehouse.CodeChallenges
{
public class Program
{
public static void Main(string[] arg)
{
}
/*
1. Create a static method named ParseWeatherForecast that takes a string[] parameter
named values and returns a WeatherForecast.
*/
public static WeatherForecast ParseWeatherForecast(string[] values)
{
/* 2. Instantiate a WeatherForecast variable named weatherForecast and assign the appropriate
value in the values array to the WeatherStationId property. */
WeatherForecast weatherForecast = new WeatherForecast();
/* 3. Use the sample data shown in WeatherForecast.cs to
determine which value in the array is the WeatherStationId. */
weatherForecast.WeatherStationId = values[0];
/* 4. Don't forget to return the weatherForecast in the new method! */
return weatherForecast;
}
}
}
using System;
/*
Sample CSV Data
weather_station_id, time_of_day, condition, temperature, precipitation_chance, precipitation_amount
HGKL8Q, 06/11/2016 0:00, Rain, 53, 0.3, 0.03
HGKL8Q, 06/11/2016 6:00, Cloudy, 56, 0.08, 0.01
HGKL8Q, 06/11/2016 12:00, PartlyCloudy, 70, 0, 0
HGKL8Q, 06/11/2016 18:00, Sunny, 76, 0, 0
HGKL8Q, 06/11/2016 19:00, Clear, 74, 0, 0
*/
namespace Treehouse.CodeChallenges
{
public class WeatherForecast
{
public string WeatherStationId { get; set; }
}
}
1 Answer
Tyler B
5,787 PointsHi Tiago!
For the most part you are instantiating correctly! One note though and you may have not covered this yet but since you're instantiating an explicit type with the new
statement you can just declare weatherForecast
as a var
and C# will figure out typing for you.
Instead of:
WeatherForecast weatherForecast = new WeatherForecast();
You can use:
var weatherForecast = new WeatherForecast();
The only issue I see with what you have is that using WeatherForecast;
at the top there, that shouldn't be there. We use the using
key word to reference namespaces out side of the one the current code is in (This is a rough summary for simplicity) since both Program and WeatherForecast exist in namespace Treehouse.CodeChallenges
WeatherForecast can be called just as WeatherForecast
. I hope that clears things up.
Tiago Ramos
2,380 PointsTiago Ramos
2,380 PointsThank you Tyler! Best answer! ;)