| public struct HighScoreData { public string[] Name; public int[] Score; public int[] Stage; public int Count; public HighScoreData(int count) { Name = new string[count]; Score = new int[count]; Stage = new int[count]; Count = count; } } |
How to sort struct fields data?
How can I sort all the data in the fields in the following struct, sorted by Score?
VulpesPosted Sep 6, 2011, 8:51 AM
time and spacePosted Sep 6, 2011, 9:29 AM