• 大小: 11.95MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-17
  • 语言: C#
  • 标签: QQ  IM  仿QQ  

资源简介

仿QQIM框架网络版源代码 一个使用C#编写的高仿QQ,具备通讯功能的聊天软件 实现了网络通讯,聊天功能等,请下载查看!功能很强大 使用多层架构,扩展性也很强 数据库文件在DB下,附加即可(MSSql2008+VS2010)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;

namespace Common
{
    public class TCPDataEventArgs : EventArgs
    {
        public Socket Socket;
        public Packagebase Code;
        public IPAddress IpAddress;
        public int Port;

        public TCPDataEventArgs(Packagebase headCode IPAddress ipAddress int port)
        {
            this.Code = headCode;
            this.IpAddress = ipAddress;
            this.Port = port;
        }
        public TCPDataEventArgs(Socket socket Packagebase headCode IPAddress ipAddress int port)
            : this(headCode ipAddress port)
        {
            this.Socket = socket;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        8248  2012-04-26 11:28  QQIM.sln
     文件      286208  2012-04-26 11:28  QQIM.suo
     文件        2522  2012-04-26 11:28  Common\Common.csproj
     文件         753  2012-04-26 11:28  Common\Args\TCPDataEventArgs.cs
     文件         805  2012-04-26 11:28  Common\base\Packagebase.cs
     文件       11776  2012-04-26 11:28  Common\bin\Debug\Common.dll
     文件       26112  2012-04-26 11:28  Common\bin\Debug\Common.pdb
     文件       10240  2012-04-26 11:28  Common\bin\Release\Common.dll
     文件       19968  2012-04-26 11:28  Common\bin\Release\Common.pdb
     文件      352768  2012-04-26 11:28  Common\Dlls\Newtonsoft.Json.dll
     文件        2383  2012-04-26 11:28  Common\Enum\EPackageHead.cs
     文件        2485  2012-04-26 11:28  Common\obj\Debug\Common.csproj.FileListAbsolute.txt
     文件       11776  2012-04-26 11:28  Common\obj\Debug\Common.dll
     文件       26112  2012-04-26 11:28  Common\obj\Debug\Common.pdb
     文件        5572  2012-04-26 11:28  Common\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         385  2012-04-26 11:28  Common\obj\Release\Common.csproj.FileListAbsolute.txt
     文件       10240  2012-04-26 11:28  Common\obj\Release\Common.dll
     文件       19968  2012-04-26 11:28  Common\obj\Release\Common.pdb
     文件        5609  2012-04-26 11:28  Common\obj\Release\DesignTimeResolveAssemblyReferencesInput.cache
     文件        1344  2012-04-26 11:28  Common\Properties\AssemblyInfo.cs
     文件       11658  2012-04-26 11:28  Common\Sock\SockTCP.cs
     文件     3145728  2012-04-26 11:28  DB\MyQQ.mdf
     文件     1048576  2012-04-26 11:28  DB\MyQQ_log.ldf
     文件        3354  2012-04-26 11:28  Entity\Entity.csproj
     文件       11776  2012-04-26 11:28  Entity\bin\Debug\Common.dll
     文件       26112  2012-04-26 11:28  Entity\bin\Debug\Common.pdb
     文件       12800  2012-04-26 11:28  Entity\bin\Debug\Entity.dll
     文件       44544  2012-04-26 11:28  Entity\bin\Debug\Entity.pdb
     文件       10240  2012-04-26 11:28  Entity\bin\Release\Common.dll
     文件       19968  2012-04-26 11:28  Entity\bin\Release\Common.pdb
     文件       12288  2012-04-26 11:28  Entity\bin\Release\Entity.dll
............此处省略710个文件信息

评论

共有 条评论