Mam następującą klasę:
class Detail
{
public Detail()
{
_details = new List<string>();
}
public IList<string> Details { get { return _details; } }
private readonly List<string> _details;
}
Obecnie sortuję klasę losowo, korzystając z:
void ShuffleGenericList<T>(IList<T> list)
{
//generate a Random instance
var rnd = new Random();
//get the count of items in the list
var i = list.Count();
//do we have a reference type or a value type
T val = default(T);
//we will loop through the list backwards
while (i >= 1)
{
//decrement our counter
i--;
//grab the next random item from the list
var nextIndex = rnd.Next(i, list.Count());
val = list[nextIndex];
//start swapping values
list[nextIndex] = list[i];
list[i] = val;
}
}
Chciałbym uporządkować zawartość szczegółów w porządku alfabetycznym.
Na przykład, jeśli zawartość wygląda tak:
[0] a
[1] d
[2] b
Chcę móc uruchomić tę metodę i posortować je w:
[0] a
[1] b
[2] d
Czy ktoś zna prosty sposób na zrobienie tego? Zauważ, że listy zwykle zawierają mniej niż dziesięć wpisów. Czy mogę to zrobić z LINQ? Przepraszam, ale nie znam LINQ. Właśnie usłyszałem sugestię, że mógłbym go użyć.