Beispiel #1
0
 public void getLikeList()
 {
     try
     {
         this.LikeLists.Clear();
         data.likeload(this.LikeLists, this.UserId);
     }
     catch (Exception ex)
     {
         this.LikeLists.Add(new Models.TweetInfo
         {
             Text = ex.Message
         }
                            );
     }
 }