I was tasked with this assignement but I cannot figure out how to do it. I have a list of characters and I have to return a new list with the same contents except all the characters that are lowercase are changed to uppercases.
How do you do a "ToUpper" on all char in a list in a single line in C#?
707 Views Asked by JeezyHungry At
2
i recommend reading this article, it simply says that you have to check if the char case is lower and then make it upper using the following code