I have following array
string[] words = { "cherry", "apple", "blueberry", "banana", "mango", "orange", "pineapple" };
I want to find the Max and Min no. of alphabets. e.g. Max = 9 (for pineapple) and Min = 5 (for apple)
Which is the shortest method to do this.
You can use the Min and Max methods: