示例#1
0
 /// <summary>
 /// Gets personal recommendations for a given user
 /// </summary>
 static void GetRecommendations()
 {
     Client client = new Client(account, secret);
     List<Recommendation> recommendations = client.GetRecommendations("1");
     Console.WriteLine("Call complete, " + recommendations.Count + " recommendations.");
     recommendations.ForEach(Print);
 }