public List <HighScores> GetTopTen() { List <HighScores> top10; MongoCursor <HighScores> result = highscores.FindAll().SetSortOrder("Score").SetLimit(10); Debug.Log(result.GetType()); return(null); }