I have an array of object e.g:
MyObject[] objs;
and within MyObject it contains a string property,
object[0].stringValue
If I want to join the whole array of objects by their stringValue, how can I do it?
I have an array of object e.g:
MyObject[] objs;
and within MyObject it contains a string property,
object[0].stringValue
If I want to join the whole array of objects by their stringValue, how can I do it?