Learn C# for beginners: 33 - Using Loops with Arrays

preview_player
Показать описание
If you enjoyed this video please comment below and give me a thumbs up! It goes a long way.

If you want to keep watching these videos make sure to subscribe!

You can contact me at:
Рекомендации по теме
Комментарии
Автор

i knew nothing about programming and I just wanna say thank you for making such great tutorials that teach people like me from zero. I feel your passion in each single lesson and you just illustrate what you wanna convey very clearly! I'm learning more and more because of you! thank you so much!

MichaelLee-bkii
Автор

This is an truly underrated channel! Deserved more than this! Well explanation! Good job mate!

leonlyan
Автор

Very well demonstrated video. I worked as a C# developer for a few years and moved to Java, so it’s handy watching these as a refresher. I never knew the foreach declared variable is read only. I always saw it as holding not the value of the array item but its position, grades[0] etc, that’s why it can’t be amended. Thanks for the info and time making this.

slapmyfunkybass
Автор

I just love the way you explain things

majorbeats
Автор

Brilliant! Thanks for explaining so understandable!

rnvgosn
Автор

You can add extra marks when using foreach by doing this Console.WriteLine(score + 3);

talalbyt
Автор

What if you want to multiply all the grades?

pervysage
Автор

This confused the hell out of me. how is "i" connected to the Array? i understand "i = 0" so show array 0, then i++ makes "i"'s value go to 1, so now show Array 1. But Why does it do that? Grades is not in the "for" and "i" is not in the grades. How are they connected?.
All I see is but grades[#] are all numbers. Is it because i = 0 so there is a shared value of 0 so it starts at 0?

SamTheTvvit