Coding
Hello, I need to loop through an array and output every word that contains a certain letter. I’ve tried using Contains() to check if the letter exists in array words. But it gives me a error for some reason? Can someone help me solve this? I’m new to C# and arrays are kinda difficult ;(.
Try flipping your if and your for loop. Do a for loop first so you can iterate each word one at a time. That is, it’ll loop for “home”, “programming”, “victor”, and so on. Then Read more…