コード例 #1
0
 public bool BInCd(COMDT_ACNT_UNIQ uniq, COM_FRIEND_TYPE friendType)
 {
     return(this.GetFriendReCallDataIndex(uniq, friendType) != -1);
 }
コード例 #2
0
 public static void Check_AddReCallCD(COMDT_ACNT_UNIQ uniq, COM_FRIEND_TYPE friendType)
 {
     Singleton <CFriendContoller> .GetInstance().model.SnsReCallData.Add(uniq, friendType);
 }
コード例 #3
0
        private CFriendReCallData.CDFriendReCallData GetFriendData(COMDT_ACNT_UNIQ uniq, COM_FRIEND_TYPE friendType)
        {
            int friendReCallDataIndex = this.GetFriendReCallDataIndex(uniq, friendType);

            if (friendReCallDataIndex == -1)
            {
                return(null);
            }
            return(this._reCallList[friendReCallDataIndex]);
        }