Question
ANSWER NEEDED IN C# 1. Create a new function called TextExploder, it should have 1 string parameter, and it returns no value. 2. This function
ANSWER NEEDED IN C#
1. Create a new function called TextExploder, it should have 1 string parameter, and it returns no value. 2. This function should take a given piece of text, given to you, the programmer, by the parameter, and display each character on a new line. 3. Recall that a string is really just a bunch of characters squished together, so, youll need to do a Console.WriteLine() foreach character in the parameter string. a. Note: You will need to search online for how to do the above in C#, contact me if you cannot determine an answer after several minutes of trying. b. Note: This functionality is mentioned in the PowerPoint slides, but I purposefully skipped over them in class. Go back and read them for more details. We will do more stuff with collections of items after spring break. 4. Call this function from your main method to test it. a. Leave a comment stating if your test was successful, and if you got the behavior from your program that you expected.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started