hi iam returning a List of type string from method i want convert it to lower case
convert this words to lower case before returning to string.
Code:
public List<string> Soccer() { List<string> list12 = new List<string> { "socc", "soc-ball", "swimming", "Jazmin Carlin", "Rebecca Adlington", "Becky Adlington", "Jo Jackson" }; return list12; }
Comment