Uncomfortable Truth about Coding Tutorial Videos
I use google a lot to find information about my problems. And google seems to pick up onthat and started recommending coding tutorial videos titled something like "Learn [popular language] in [number] hours complete course", with additional keywords like "for beginners". In this kind of videos, you will learn the most basic concepts about the language and that's about it. Great, you learned if statement and for statement. Now how do I actually use them in practice? Very few would be able to write something like this after watching that video if given the appropriate problem. (And this is not a good code either. You should use Linq if it's possible.) public class Main{ public void CheckAndPrintArray<T>(T[] array, Func<T, bool> checkError){ for(int i = 0; i < array.Length; i++){ if(checkError( array[i] )) Console.WriteLine($"Array element# {i} has error."); ...