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 trialMichael Caveney
50,144 PointsWorking with DateTime 3 of 3 Code Challenge
Hey all, can't quite figure out this step of the code challenge. Here's my code:
public static WeatherForecast ParseWeatherForecast(string[] values)
{
WeatherForecast weatherForecast = new WeatherForecast();
weatherForecast.WeatherStationId = values[0];
return weatherForecast;
}
using System;
using System.IO;
namespace Treehouse.CodeChallenges
{
public class Program
{
public static void Main(string[] arg)
{
}
public static WeatherForecast ParseWeatherForecast(string[] values)
{
WeatherForecast weatherForecast = new WeatherForecast();
weatherForecast.WeatherStationId = values[0];
var timeOfDay = new TimeOfDay();
DateTime.timeOfDay;
if (DateTime.TryParse(values[1], out timeOfDay)
{
weatherForecast.TimeOfDay = timeOfDay;
}
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; }
public DateTime TimeOfDay { get; set; }
}
}
3 Answers
Nicholas Bentzen
15,074 PointsChange the line: "var timeOfDay = new TimeOfDay();" to "DateTime timeOfDay;"
Delete the "DateTime.timeOfDay;
That should fix it.
Michael Caveney
50,144 PointsThat doesn't fix it, I'm still getting an "Program.cs(21,16): error CS1525: Unexpected symbol `{' Compilation failed: 1 error(s), 0 warnings" error:
using System;
using System.IO;
namespace Treehouse.CodeChallenges
{
public class Program
{
public static void Main(string[] arg)
{
}
public static WeatherForecast ParseWeatherForecast(string[] values)
{
WeatherForecast weatherForecast = new WeatherForecast();
weatherForecast.WeatherStationId = values[0];
DateTime timeOfDay;
if (DateTime.TryParse(values[1], out timeOfDay)
{
weatherForecast.TimeOfDay = timeOfDay;
}
return weatherForecast;
}
}
}
Michael Caveney
50,144 PointsFigured this out, this line:
WeatherForecast weatherForecast = new WeatherForecast();
...needs to be written thusly:
var weatherForecast = new WeatherForecast();
Nicholas Bentzen
15,074 PointsNicholas Bentzen
15,074 PointsChange the line: "var timeOfDay = new TimeOfDay();" to "DateTime timeOfDay;"
Delete the "DateTime.timeOfDay;