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