我想從這個函數返回一個數組。這是功能:從函數返回數組。
public static string[] loadServers() {
WebClient client = new WebClient();
string getString = client.DownloadString("http://flippr.pw/en/web_service/servers.json");
client.Dispose();
Dictionary<string, Servers> listOfServers = JsonConvert.DeserializeObject<Dictionary<string, Servers>>(getString);
return listOfServers;
}
我該如何返回數組到聲明的數組?
'listOfServers'是一個'Dictionary',而不是一個數組。你到底想要什麼? –
在服務器對象上使用linq ToArray()作爲鍵或相關的prop。 – MatthewMartin
你只是想'串'鍵? 'return listOfServers.Keys.ToArray()' – Jonesopolis