示例#1
0
        public string Func_GetChannelUserList(string cid)
        {
            string[] clist = db_con.ClientGetChannelIndex(cid).Split('#');
            string   str   = "";

            for (int i = 0; i < clist.Length - 1; i++)
            {
                str += db_con.InChannelGetMemberList2(clist[i]) + "&";
            }
            return(str);
        }