internal List<MsgEntity> AllMsg() { List<MsgEntity> msglist=new List<MsgEntity>(); string msg=this.GetMsg(); while (msg.LastIndexOf("):") >= 0) { MsgEntity msn = new MsgEntity(); msn.user = this.LastMsgUser(msg); msn.usermsg = this.LastMsg(msg); msglist.Insert(0, msn); msg = this.DeleteLastMsg(msg); } return msglist; }
/// <summary> /// 获取当前窗口最后一次消息内容及消息发送人 /// </summary> /// <returns></returns> internal MsgEntity LastMsg() { string msg = this.GetMsg(); MsgEntity msgentity = new MsgEntity(); msgentity.user = this.LastMsgUser(msg); msgentity.usermsg = this.LastMsg(msg); return msgentity; }