OpenTween.Twitter.UpdateUserStats C# (CSharp) Method

UpdateUserStats() private method

ユーザーのフォロワー数などの情報を更新します
private UpdateUserStats ( TwitterUser self ) : void
self TwitterUser
return void
        private void UpdateUserStats(TwitterUser self)
        {
            this.FollowersCount = self.FollowersCount;
            this.FriendsCount = self.FriendsCount;
            this.StatusesCount = self.StatusesCount;
            this.Location = self.Location;
            this.Bio = self.Description;
        }