How to send queue message from Windows Phone?
问题 I'm using the Windows Azure toolkit for Windows Phone, but I have difficulities to send a queue message to the cloud service. Here is my code: public void SendQueueMessage(string queueReference, params string[] message) { CloudQueue cloudQueue = new CloudQueue(); CloudQueueClient queueClient = new CloudQueueClient(queueUri, credentials); queueClient.GetQueueReference(queueReference); StringBuilder sb = new StringBuilder(); foreach (var messagePart in message) { sb.Append(messagePart); sb