I am trying to sort a generic list, and am getting a InvalidOperationException
error
Does anyone has suggestions on how to rectify it?
List<XYZ<String, String>>
list is being passed on as a parameter through a function.
func( List<XYZ<String, String>> PassedList) {
PassedList.Sort();
}
Any suggestion would be really helpful.