C
Curious
I have:
ArrayList mPreviousComments = new ArrayList(new string[]{"Please
select a comment:"});
mPreviousComments contains multiple items with the first one being
"Please select a comment:". For example, it contains the following
{"Please select a comment:", "No user intervention is necessary",
"Procedure completed", "Error occured during executing"...}
Now I'll need to sort mPreviousComments in alphabetical order with the
exception that the first item will always be "Please select a
comment:". How to sort the rest of the list? mPreviousComments.Sort()
would sort the entire list.
ArrayList mPreviousComments = new ArrayList(new string[]{"Please
select a comment:"});
mPreviousComments contains multiple items with the first one being
"Please select a comment:". For example, it contains the following
{"Please select a comment:", "No user intervention is necessary",
"Procedure completed", "Error occured during executing"...}
Now I'll need to sort mPreviousComments in alphabetical order with the
exception that the first item will always be "Please select a
comment:". How to sort the rest of the list? mPreviousComments.Sort()
would sort the entire list.