コード例 #1
0
ファイル: User.cs プロジェクト: robo-robo-123/lightbard
 public void getFriendList()
 {
     try
     {
         this.UserFriends.Clear();
         data.userfriendload(this.UserFriends, this.UserId);
         //        data.likeload(this.UserFriends);
     }
     catch (Exception ex)
     {
         this.UserFriends.Add(new Models.UserInfo
         {
             Text = ex.Message
         }
                              );
     }
 }