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#

Michael Hajný
Michael Hajný
2,481 Points

Could you hellp me? I try to glean what I did unwell… If you know where is problem answer it please.

DateTime aktualniDatumCas = DateTime.Now;

        Console.WriteLine("aktualniDatumCas.Year: {0}", aktualniDatumCas.Year);

        Console.WriteLine("aktualniDatumCas.Month: {0}", aktualniDatumCas.Month);

        Console.WriteLine("aktualniDatumCas.Day: {0}", aktualniDatumCas.Day);

        Console.WriteLine("aktualniDatumCas.Hour: {0}", aktualniDatumCas.Hour);

        Console.WriteLine("aktualniDatumCas.Minute: {0}", aktualniDatumCas.Minute);

        Console.WriteLine("aktualniDatumCas.Second: {0}", aktualniDatumCas.Second);

        Console.WriteLine("aktualniDatumCas.Milisecond: {0}", aktualniDatumCas.Milisecond);

1 Answer

Emmanuel C
Emmanuel C
10,636 Points

Millisecond has 2 "L"s