实例介绍
开源的networkcomms2.3.1通信框架(gplv3)
【实例截图】
【核心代码】
IM_3.3
└── IM
├── CnSimpleIM
│ ├── networkcomms.net V3商业版.txt
│ ├── SimpleIM.AppManage
│ │ ├── AddUser.cs
│ │ ├── AddUser.Designer.cs
│ │ ├── AddUser.resx
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── log4net.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SimpleIM.AppManage.exe
│ │ │ ├── SimpleIM.AppManage.exe.config
│ │ │ ├── SimpleIM.AppManage.pdb
│ │ │ ├── SimpleIM.Business.dll
│ │ │ ├── SimpleIM.Business.pdb
│ │ │ ├── SimpleIM.Data.dll
│ │ │ └── SimpleIM.Data.pdb
│ │ ├── Control
│ │ │ ├── VerificationCode.cs
│ │ │ ├── VerificationCode.Designer.cs
│ │ │ └── VerificationCode.resx
│ │ ├── groupimg
│ │ │ ├── bottom.png
│ │ │ ├── del.png
│ │ │ ├── down.png
│ │ │ ├── edit.png
│ │ │ ├── top.png
│ │ │ └── up.png
│ │ ├── GroupManage.cs
│ │ ├── GroupManage.Designer.cs
│ │ ├── GroupManage.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── NetworkComms.net 通信框架V3商业版.txt
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SimpleIM.AppManage.AddUser.resources
│ │ │ ├── SimpleIM.AppManage.Control.VerificationCode.resources
│ │ │ ├── SimpleIM.AppManage.csproj.FileListAbsolute.txt
│ │ │ ├── SimpleIM.AppManage.csproj.GenerateResource.Cache
│ │ │ ├── SimpleIM.AppManage.csprojResolveAssemblyReference.cache
│ │ │ ├── SimpleIM.AppManage.exe
│ │ │ ├── SimpleIM.AppManage.GroupManage.resources
│ │ │ ├── SimpleIM.AppManage.MainForm.resources
│ │ │ ├── SimpleIM.AppManage.pdb
│ │ │ ├── SimpleIM.AppManage.Properties.Resources.resources
│ │ │ ├── SimpleIM.AppManage.RoleManager.resources
│ │ │ ├── SimpleIM.AppManage.UserManager.resources
│ │ │ ├── SimpleIM.AppManage.UserProfile.resources
│ │ │ └── SimpleIM.AppManage.UserRoleProfile.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── bottom.png
│ │ │ ├── del.png
│ │ │ ├── down.png
│ │ │ ├── edit.png
│ │ │ ├── top.png
│ │ │ └── up.png
│ │ ├── RoleManager.cs
│ │ ├── RoleManager.Designer.cs
│ │ ├── RoleManager.resx
│ │ ├── SimpleIM.AppManage.csproj
│ │ ├── SimpleIM.AppManage.csproj.user
│ │ ├── UserManager.cs
│ │ ├── UserManager.Designer.cs
│ │ ├── UserManager.resx
│ │ ├── UserProfile.cs
│ │ ├── UserProfile.Designer.cs
│ │ ├── UserProfile.resx
│ │ ├── UserRoleProfile.cs
│ │ ├── UserRoleProfile.Designer.cs
│ │ └── UserRoleProfile.resx
│ ├── SimpleIM.Business
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── log4net.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SimpleIM.Business.dll
│ │ │ ├── SimpleIM.Business.pdb
│ │ │ ├── SimpleIMContract.dll
│ │ │ ├── SimpleIMContract.pdb
│ │ │ ├── SimpleIM.Data.dll
│ │ │ └── SimpleIM.Data.pdb
│ │ ├── ChatContract.cs
│ │ ├── Do
│ │ │ ├── DoOffLineMessage.cs
│ │ │ ├── DoRcUsers.cs
│ │ │ ├── DoRoleGroup.cs
│ │ │ └── DoUserGroup.cs
│ │ ├── Entity
│ │ │ ├── OffLineMessage.cs
│ │ │ ├── RcUsers.cs
│ │ │ ├── RoleGroup.cs
│ │ │ └── UserGroup.cs
│ │ ├── ImageListContract.cs
│ │ ├── ImageWrapper.cs
│ │ ├── NetworkComms.net 通信框架V3商业版.txt
│ │ ├── NewChatContract.cs
│ │ ├── obj
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SimpleIM.Business.csproj.FileListAbsolute.txt
│ │ │ ├── SimpleIM.Business.csprojResolveAssemblyReference.cache
│ │ │ ├── SimpleIM.Business.dll
│ │ │ └── SimpleIM.Business.pdb
│ │ ├── P2P
│ │ │ ├── SetUpP2PContract.cs
│ │ │ └── UserIDEndPoint.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ResMessage.cs
│ │ ├── SimpleIM.Business.csproj
│ │ ├── SimpleIM.Business.csproj.user
│ │ ├── UserContract.cs
│ │ ├── UserGroupIDContract.cs
│ │ ├── UserIDContract.cs
│ │ ├── UserInfo.cs
│ │ ├── UserListContract.cs
│ │ ├── UserLoginContract.cs
│ │ ├── UserPswContract.cs
│ │ └── UserStateContract.cs
│ ├── SimpleIMClient
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── aa
│ │ │ ├── CaptureImageTool.dll
│ │ │ ├── CaptureImageTool.pdb
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── log4net.dll
│ │ │ ├── NetworkCommsDotNet.dll
│ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ ├── NetworkCommsDotNet.xml
│ │ │ ├── NLog.dll
│ │ │ ├── P2PINFO.txt
│ │ │ ├── protobuf-net.dll
│ │ │ ├── ProtobufSerializer.dll
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ ├── SevenZipLZMACompressor.xml
│ │ │ ├── SimpleIM.Business.dll
│ │ │ ├── SimpleIM.Business.pdb
│ │ │ ├── SimpleIMClient.exe
│ │ │ ├── SimpleIMClient.exe.config
│ │ │ ├── SimpleIMClient.pdb
│ │ │ ├── SimpleIMClient.vshost.exe
│ │ │ ├── SimpleIMClient.vshost.exe.config
│ │ │ ├── SimpleIMClient.vshost.exe.manifest
│ │ │ ├── SimpleIM.Data.dll
│ │ │ ├── SimpleIM.Data.pdb
│ │ │ └── Skins
│ │ │ ├── 1.45_1
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_10
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_2
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_3
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_4
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_5
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ ├── 1.45_6
│ │ │ │ ├── logon_preview.png
│ │ │ │ ├── main.jpg
│ │ │ │ ├── preview.png
│ │ │ │ ├── recent_preview.png
│ │ │ │ └── themeconfig.xml
│ │ │ └── 1.45_9
│ │ │ ├── logon_preview.png
│ │ │ ├── main.jpg
│ │ │ ├── preview.png
│ │ │ ├── recent_preview.png
│ │ │ └── themeconfig.xml
│ │ ├── ChatControl
│ │ │ ├── ChatControl.cs
│ │ │ ├── ChatControl.designer.cs
│ │ │ ├── ChatControl.resx
│ │ │ ├── ChildForm.cs
│ │ │ ├── ChildForm.designer.cs
│ │ │ ├── ChildForm.resx
│ │ │ ├── Data.cs
│ │ │ ├── FaceBox.cs
│ │ │ ├── FaceForm.cs
│ │ │ ├── FaceForm.designer.cs
│ │ │ ├── FaceForm.resx
│ │ │ ├── FileIDCreator.cs
│ │ │ ├── MyGIF.cs
│ │ │ └── RichTextBoxEx.cs
│ │ ├── ChatForm.cs
│ │ ├── ChatForm.Designer.cs
│ │ ├── ChatForm.resx
│ │ ├── Common.cs
│ │ ├── Core
│ │ │ └── EventHelper.cs
│ │ ├── CustomEventArgs.cs
│ │ ├── FormManager.cs
│ │ ├── LogInfo.cs
│ │ ├── NetworkComms.net 通信框架V3商业版.txt
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SimpleIMClient.ChatControl.resources
│ │ │ ├── SimpleIMClient.ChatForm.resources
│ │ │ ├── SimpleIMClient.ChildForm.resources
│ │ │ ├── SimpleIMClient.csproj.FileListAbsolute.txt
│ │ │ ├── SimpleIMClient.csproj.GenerateResource.Cache
│ │ │ ├── SimpleIMClient.csprojResolveAssemblyReference.cache
│ │ │ ├── SimpleIMClient.exe
│ │ │ ├── SimpleIMClient.FaceForm.resources
│ │ │ ├── SimpleIMClient.IMForm.resources
│ │ │ ├── SimpleIMClient.pdb
│ │ │ ├── SimpleIMClient.Properties.Resources.resources
│ │ │ ├── SimpleIMClient.Skin.BasicComboBox.resources
│ │ │ ├── SimpleIMClient.Skin.BasicForm.resources
│ │ │ ├── SimpleIMClient.Skin.BasicMsgBoxForm.resources
│ │ │ ├── SimpleIMClient.Skin.QQChatForm.resources
│ │ │ ├── SimpleIMClient.Skin.QQComboBox.resources
│ │ │ ├── SimpleIMClient.Skin.QQLoginForm.resources
│ │ │ ├── SimpleIMClient.Skin.QQMainForm.resources
│ │ │ └── SimpleIMClient.Skin.RegisterUser.resources
│ │ ├── Pic
│ │ │ ├── favicon.ico
│ │ │ └── Icon.png
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── QQForm
│ │ │ ├── Enums.cs
│ │ │ ├── Group.cs
│ │ │ ├── HeadBox.cs
│ │ │ ├── IMForm.cs
│ │ │ ├── IMForm.designer.cs
│ │ │ ├── IMForm.resx
│ │ │ ├── MSDC.QQForm.csproj
│ │ │ ├── NameBox.cs
│ │ │ ├── QueryCtrl.cs
│ │ │ ├── Recently.cs
│ │ │ ├── SeachResultPanel.cs
│ │ │ ├── SlidingBarContainer.cs
│ │ │ ├── SlidingBar.cs
│ │ │ ├── TabContainer.cs
│ │ │ ├── Tab.cs
│ │ │ ├── User.cs
│ │ │ └── UserMessage.cs
│ │ ├── QQSkin
│ │ │ ├── Control
│ │ │ │ ├── BasicButton.cs
│ │ │ │ ├── BasicButton.designer.cs
│ │ │ │ ├── BasicCheckBox.cs
│ │ │ │ ├── BasicComboBox.cs
│ │ │ │ ├── BasicComboBox.designer.cs
│ │ │ │ ├── BasicComboBox.resx
│ │ │ │ ├── BasicQQTextBox.cs
│ │ │ │ ├── BasicQQTextBox.designer.cs
│ │ │ │ ├── BasicRadioButton.cs
│ │ │ │ ├── BasicTextBox.cs
│ │ │ │ ├── FriendControl.cs
│ │ │ │ ├── GroupControl.cs
│ │ │ │ ├── LoginButton.cs
│ │ │ │ ├── QQComboBox.cs
│ │ │ │ ├── QQComboBox.designer.cs
│ │ │ │ ├── QQComboBox.resx
│ │ │ │ ├── QQContextMenu.cs
│ │ │ │ ├── QQListView.cs
│ │ │ │ ├── QQPictureBox.cs
│ │ │ │ ├── QQtextBox.cs
│ │ │ │ ├── QQToolStripMenuItem.cs
│ │ │ │ ├── QQToolStripSeparator.cs
│ │ │ │ └── VScrollControl.cs
│ │ │ ├── Entity
│ │ │ │ ├── Friend.cs
│ │ │ │ ├── Group.cs
│ │ │ │ └── UserInfo.cs
│ │ │ ├── Form
│ │ │ │ ├── BasicForm.cs
│ │ │ │ ├── BasicForm.designer.cs
│ │ │ │ ├── BasicForm.resx
│ │ │ │ ├── BasicMsgBoxForm.cs
│ │ │ │ ├── BasicMsgBoxForm.designer.cs
│ │ │ │ ├── BasicMsgBoxForm.resx
│ │ │ │ ├── MsgBox.cs
│ │ │ │ ├── QQChatForm.cs
│ │ │ │ ├── QQChatForm.designer.cs
│ │ │ │ ├── QQChatForm.resx
│ │ │ │ ├── QQForm.cs
│ │ │ │ ├── QQForm.designer.cs
│ │ │ │ ├── QQForm.resx
│ │ │ │ ├── QQLoginForm.cs
│ │ │ │ ├── QQLoginForm.designer.cs
│ │ │ │ ├── QQLoginForm.resx
│ │ │ │ ├── QQMainForm.cs
│ │ │ │ ├── QQMainForm.designer.cs
│ │ │ │ ├── QQMainForm.resx
│ │ │ │ ├── QQRegisterForm.cs
│ │ │ │ ├── QQRegisterForm.Designer.cs
│ │ │ │ ├── RegisterUser.cs
│ │ │ │ ├── RegisterUser.Designer.cs
│ │ │ │ └── RegisterUser.resx
│ │ │ └── Util
│ │ │ ├── ResClass.cs
│ │ │ ├── SkinUtil.cs
│ │ │ ├── TaskMenu.cs
│ │ │ └── Win32.cs
│ │ ├── Resources
│ │ │ ├── 011.ico
│ │ │ ├── 012.ico
│ │ │ ├── 01.bmp
│ │ │ ├── 01.ico
│ │ │ ├── 0511.png
│ │ │ ├── 051.png
│ │ │ ├── 052.png
│ │ │ ├── 05.png
│ │ │ ├── 0.bmp
│ │ │ ├── 0.ico
│ │ │ ├── 1011.jpg
│ │ │ ├── 1012.jpg
│ │ │ ├── 101.jpg
│ │ │ ├── 1051.jpg
│ │ │ ├── 1052.jpg
│ │ │ ├── 105.jpg
│ │ │ ├── 111.ico
│ │ │ ├── 112.ico
│ │ │ ├── 11.bmp
│ │ │ ├── 11.ico
│ │ │ ├── 1.bmp
│ │ │ ├── 1.ico
│ │ │ ├── 211.ico
│ │ │ ├── 212.ico
│ │ │ ├── 21.ico
│ │ │ ├── 2.ico
│ │ │ ├── 61.bmp
│ │ │ ├── 6.bmp
│ │ │ ├── 801.jpg
│ │ │ ├── 80.jpg
│ │ │ ├── 811.jpg
│ │ │ ├── 81.jpg
│ │ │ ├── 821.jpg
│ │ │ ├── 82.jpg
│ │ │ ├── 831.jpg
│ │ │ ├── 83.jpg
│ │ │ ├── 841.jpg
│ │ │ ├── 84.jpg
│ │ │ ├── adjustcolorslider_dragbackground.png
│ │ │ ├── aio_png_bkg.png
│ │ │ ├── allbtn_down.png
│ │ │ ├── allbtn_highlight.png
│ │ │ ├── All_horzscrollbar_bkgHorz.bmp
│ │ │ ├── all_inside03_bkg.png
│ │ │ ├── big100.png
│ │ │ ├── big101.png
│ │ │ ├── big102.png
│ │ │ ├── big103.png
│ │ │ ├── big104.png
│ │ │ ├── big105.png
│ │ │ ├── big10.png
│ │ │ ├── big111.png
│ │ │ ├── big113.png
│ │ │ ├── big114.png
│ │ │ ├── big115.png
│ │ │ ├── big116.png
│ │ │ ├── big117.png
│ │ │ ├── big118.PNG
│ │ │ ├── big119.PNG
│ │ │ ├── big11.png
│ │ │ ├── big120.PNG
│ │ │ ├── big121.PNG
│ │ │ ├── big122.PNG
│ │ │ ├── big126.PNG
│ │ │ ├── big127.PNG
│ │ │ ├── big128.PNG
│ │ │ ├── big129.PNG
│ │ │ ├── big12.png
│ │ │ ├── big130.PNG
│ │ │ ├── big131.PNG
│ │ │ ├── big132.PNG
│ │ │ ├── big133.PNG
│ │ │ ├── big134.PNG
│ │ │ ├── big135.PNG
│ │ │ ├── big136.PNG
│ │ │ ├── big137.PNG
│ │ │ ├── big138.PNG
│ │ │ ├── big139.PNG
│ │ │ ├── big13.png
│ │ │ ├── big140.PNG
│ │ │ ├── big141.PNG
│ │ │ ├── big142.PNG
│ │ │ ├── big143.PNG
│ │ │ ├── big144.PNG
│ │ │ ├── big145.PNG
│ │ │ ├── big146.PNG
│ │ │ ├── big147.PNG
│ │ │ ├── big148.PNG
│ │ │ ├── big149.PNG
│ │ │ ├── big14.png
│ │ │ ├── big150.PNG
│ │ │ ├── big151.PNG
│ │ │ ├── big152.PNG
│ │ │ ├── big153.PNG
│ │ │ ├── big154.PNG
│ │ │ ├── big155.PNG
│ │ │ ├── big156.PNG
│ │ │ ├── big157.PNG
│ │ │ ├── big158.PNG
│ │ │ ├── big159.PNG
│ │ │ ├── big15.png
│ │ │ ├── big160.PNG
│ │ │ ├── big161.PNG
│ │ │ ├── big162.PNG
│ │ │ ├── big163.PNG
│ │ │ ├── big164.PNG
│ │ │ ├── big165.PNG
│ │ │ ├── big166.PNG
│ │ │ ├── big167.PNG
│ │ │ ├── big168.PNG
│ │ │ ├── big169.PNG
│ │ │ ├── big16.png
│ │ │ ├── big170.PNG
│ │ │ ├── big171.PNG
│ │ │ ├── big172.PNG
│ │ │ ├── big173.PNG
│ │ │ ├── big174_100.gif
│ │ │ ├── big174.PNG
│ │ │ ├── big175_100.gif
│ │ │ ├── big175.PNG
│ │ │ ├── big176_100.gif
│ │ │ ├── big176.PNG
│ │ │ ├── big177_100.gif
│ │ │ ├── big177.PNG
│ │ │ ├── big178_100.gif
│ │ │ ├── big178.PNG
│ │ │ ├── big179_100.gif
│ │ │ ├── big179.PNG
│ │ │ ├── big17.png
│ │ │ ├── big180_100.gif
│ │ │ ├── big180.PNG
│ │ │ ├── big181_100.gif
│ │ │ ├── big181.png
│ │ │ ├── big182_100.gif
│ │ │ ├── big182.png
│ │ │ ├── big183_100.gif
│ │ │ ├── big183.png
│ │ │ ├── big184_100.gif
│ │ │ ├── big184.png
│ │ │ ├── big185_100.gif
│ │ │ ├── big185.png
│ │ │ ├── big186_100.gif
│ │ │ ├── big186.png
│ │ │ ├── big187_100.gif
│ │ │ ├── big187.png
│ │ │ ├── big188_100.gif
│ │ │ ├── big188.png
│ │ │ ├── big189_100.gif
│ │ │ ├── big189.png
│ │ │ ├── big18.png
│ │ │ ├── big190_100.gif
│ │ │ ├── big190.png
│ │ │ ├── big191_100.gif
│ │ │ ├── big191.png
│ │ │ ├── big192_100.gif
│ │ │ ├── big192.png
│ │ │ ├── big193_100.gif
│ │ │ ├── big193.png
│ │ │ ├── big194_100.gif
│ │ │ ├── big194.png
│ │ │ ├── big195_100.gif
│ │ │ ├── big195.png
│ │ │ ├── big196_100.gif
│ │ │ ├── big196.png
│ │ │ ├── big197_100.gif
│ │ │ ├── big197.png
│ │ │ ├── big198_100.gif
│ │ │ ├── big198.png
│ │ │ ├── big199_100.gif
│ │ │ ├── big199.png
│ │ │ ├── big19.png
│ │ │ ├── big1.png
│ │ │ ├── big200_100.gif
│ │ │ ├── big200.png
│ │ │ ├── big201_100.gif
│ │ │ ├── big201.png
│ │ │ ├── big20.png
│ │ │ ├── big21.png
│ │ │ ├── big22.png
│ │ │ ├── big23.png
│ │ │ ├── big24.png
│ │ │ ├── big25.png
│ │ │ ├── big26.png
│ │ │ ├── big27.png
│ │ │ ├── big28.png
│ │ │ ├── big29.png
│ │ │ ├── big2.png
│ │ │ ├── big30.png
│ │ │ ├── big31.png
│ │ │ ├── big32.png
│ │ │ ├── big33.png
│ │ │ ├── big34.png
│ │ │ ├── big35.png
│ │ │ ├── big36.png
│ │ │ ├── big37.png
│ │ │ ├── big38.png
│ │ │ ├── big39.png
│ │ │ ├── big3.png
│ │ │ ├── big40.png
│ │ │ ├── big41.png
│ │ │ ├── big42.png
│ │ │ ├── big43.png
│ │ │ ├── big44.png
│ │ │ ├── big45.png
│ │ │ ├── big46.png
│ │ │ ├── big47.png
│ │ │ ├── big48.png
│ │ │ ├── big49.png
│ │ │ ├── big4.png
│ │ │ ├── big50.png
│ │ │ ├── big51.png
│ │ │ ├── big52.png
│ │ │ ├── big53.png
│ │ │ ├── big54.png
│ │ │ ├── big55.png
│ │ │ ├── big56.png
│ │ │ ├── big57.png
│ │ │ ├── big58.png
│ │ │ ├── big59.png
│ │ │ ├── big5.png
│ │ │ ├── big60.png
│ │ │ ├── big61.png
│ │ │ ├── big62.png
│ │ │ ├── big63.png
│ │ │ ├── big64.png
│ │ │ ├── big65.png
│ │ │ ├── big66.png
│ │ │ ├── big67.png
│ │ │ ├── big68.png
│ │ │ ├── big69.png
│ │ │ ├── big6.png
│ │ │ ├── big70.png
│ │ │ ├── big71.png
│ │ │ ├── big72.png
│ │ │ ├── big73.png
│ │ │ ├── big74.png
│ │ │ ├── big75.png
│ │ │ ├── big76.png
│ │ │ ├── big77.png
│ │ │ ├── big78.png
│ │ │ ├── big79.png
│ │ │ ├── big7.png
│ │ │ ├── big80.png
│ │ │ ├── big81.png
│ │ │ ├── big82.png
│ │ │ ├── big83.png
│ │ │ ├── big84.png
│ │ │ ├── big85.png
│ │ │ ├── big86.png
│ │ │ ├── big87.png
│ │ │ ├── big88.png
│ │ │ ├── big89.png
│ │ │ ├── big8.png
│ │ │ ├── big90.png
│ │ │ ├── big91.png
│ │ │ ├── big92.png
│ │ │ ├── big93.png
│ │ │ ├── big94.png
│ │ │ ├── big95.png
│ │ │ ├── big96.png
│ │ │ ├── big97.png
│ │ │ ├── big98.png
│ │ │ ├── big99.png
│ │ │ ├── big9.png
│ │ │ ├── btn_close_down.png
│ │ │ ├── btn_close_highlight.png
│ │ │ ├── btn_close_normal.png
│ │ │ ├── btn_down.png
│ │ │ ├── btn_focus.png
│ │ │ ├── btn_highlight.png
│ │ │ ├── btn_max_down.png
│ │ │ ├── btn_max_highlight.png
│ │ │ ├── btn_max_normal.png
│ │ │ ├── btn_mini_down.png
│ │ │ ├── btn_mini_highlight.png
│ │ │ ├── btn_mini_normal.png
│ │ │ ├── btn_normal.png
│ │ │ ├── btn_restore_down.png
│ │ │ ├── btn_restore_highlight.png
│ │ │ ├── btn_restore_normal.png
│ │ │ ├── cb_b_e.bmp
│ │ │ ├── cb_b_l.bmp
│ │ │ ├── cb_c_e.bmp
│ │ │ ├── cb_c_l.png
│ │ │ ├── cb_n_e.bmp
│ │ │ ├── cb_n_l.png
│ │ │ ├── Close11.png
│ │ │ ├── Close12.png
│ │ │ ├── Close1.png
│ │ │ ├── Close2.png
│ │ │ ├── Close3.png
│ │ │ ├── Close.png
│ │ │ ├── color_highlight.png
│ │ │ ├── colour.png
│ │ │ ├── combobox_buttonHighlightDraw.bmp
│ │ │ ├── combobox_buttonNormalDraw.bmp
│ │ │ ├── combobox_buttonPushedDraw.bmp
│ │ │ ├── comboboxEraseButton_Hover.png
│ │ │ ├── comboboxEraseButton_Normal.bmp
│ │ │ ├── comboboxEraseButton_Push.png
│ │ │ ├── Face_01.gif
│ │ │ ├── Face_02.gif
│ │ │ ├── Face_0.gif
│ │ │ ├── Face_1001.gif
│ │ │ ├── Face_1002.gif
│ │ │ ├── Face_100.gif
│ │ │ ├── Face_1010.gif
│ │ │ ├── Face_1011.gif
│ │ │ ├── Face_1012.gif
│ │ │ ├── Face_1013.gif
│ │ │ ├── Face_101.gif
│ │ │ ├── Face_1021.gif
│ │ │ ├── Face_1022.gif
│ │ │ ├── Face_102.gif
│ │ │ ├── Face_1031.gif
│ │ │ ├── Face_1032.gif
│ │ │ ├── Face_103.gif
│ │ │ ├── Face_1041.gif
│ │ │ ├── Face_1042.gif
│ │ │ ├── Face_104.gif
│ │ │ ├── Face_1051.gif
│ │ │ ├── Face_1052.gif
│ │ │ ├── Face_105.gif
│ │ │ ├── Face_1061.gif
│ │ │ ├── Face_1062.gif
│ │ │ ├── Face_106.gif
│ │ │ ├── Face_1071.gif
│ │ │ ├── Face_1072.gif
│ │ │ ├── Face_107.gif
│ │ │ ├── Face_1081.gif
│ │ │ ├── Face_1082.gif
│ │ │ ├── Face_108.gif
│ │ │ ├── Face_1091.gif
│ │ │ ├── Face_1092.gif
│ │ │ ├── Face_109.gif
│ │ │ ├── Face_10.gif
│ │ │ ├── Face_1101.gif
│ │ │ ├── Face_1102.gif
│ │ │ ├── Face_110.gif
│ │ │ ├── Face_1110.gif
│ │ │ ├── Face_1111.gif
│ │ │ ├── Face_1112.gif
│ │ │ ├── Face_1113.gif
│ │ │ ├── Face_111.gif
│ │ │ ├── Face_1121.gif
│ │ │ ├── Face_1122.gif
│ │ │ ├── Face_112.gif
│ │ │ ├── Face_1131.gif
│ │ │ ├── Face_1132.gif
│ │ │ ├── Face_113.gif
│ │ │ ├── Face_1141.gif
│ │ │ ├── Face_1142.gif
│ │ │ ├── Face_114.gif
│ │ │ ├── Face_1151.gif
│ │ │ ├── Face_1152.gif
│ │ │ ├── Face_115.gif
│ │ │ ├── Face_1161.gif
│ │ │ ├── Face_1162.gif
│ │ │ ├── Face_116.gif
│ │ │ ├── Face_1171.gif
│ │ │ ├── Face_1172.gif
│ │ │ ├── Face_117.gif
│ │ │ ├── Face_1181.gif
│ │ │ ├── Face_1182.gif
│ │ │ ├── Face_118.gif
│ │ │ ├── Face_1191.gif
│ │ │ ├── Face_1192.gif
│ │ │ ├── Face_119.gif
│ │ │ ├── Face_11.gif
│ │ │ ├── Face_1201.gif
│ │ │ ├── Face_1202.gif
│ │ │ ├── Face_120.gif
│ │ │ ├── Face_1210.gif
│ │ │ ├── Face_1211.gif
│ │ │ ├── Face_1212.gif
│ │ │ ├── Face_1213.gif
│ │ │ ├── Face_121.gif
│ │ │ ├── Face_1221.gif
│ │ │ ├── Face_1222.gif
│ │ │ ├── Face_122.gif
│ │ │ ├── Face_1231.gif
│ │ │ ├── Face_1232.gif
│ │ │ ├── Face_123.gif
│ │ │ ├── Face_1241.gif
│ │ │ ├── Face_1242.gif
│ │ │ ├── Face_124.gif
│ │ │ ├── Face_1251.gif
│ │ │ ├── Face_1252.gif
│ │ │ ├── Face_125.gif
│ │ │ ├── Face_1261.gif
│ │ │ ├── Face_1262.gif
│ │ │ ├── Face_126.gif
│ │ │ ├── Face_1271.gif
│ │ │ ├── Face_1272.gif
│ │ │ ├── Face_127.gif
│ │ │ ├── Face_1281.gif
│ │ │ ├── Face_1282.gif
│ │ │ ├── Face_128.gif
│ │ │ ├── Face_1291.gif
│ │ │ ├── Face_1292.gif
│ │ │ ├── Face_129.gif
│ │ │ ├── Face_12.gif
│ │ │ ├── Face_1301.gif
│ │ │ ├── Face_1302.gif
│ │ │ ├── Face_130.gif
│ │ │ ├── Face_1311.gif
│ │ │ ├── Face_1312.gif
│ │ │ ├── Face_131.gif
│ │ │ ├── Face_1321.gif
│ │ │ ├── Face_1322.gif
│ │ │ ├── Face_132.gif
│ │ │ ├── Face_1331.gif
│ │ │ ├── Face_1332.gif
│ │ │ ├── Face_133.gif
│ │ │ ├── Face_1341.gif
│ │ │ ├── Face_1342.gif
│ │ │ ├── Face_134.gif
│ │ │ ├── Face_135.gif
│ │ │ ├── Face_136.gif
│ │ │ ├── Face_137.gif
│ │ │ ├── Face_138.gif
│ │ │ ├── Face_13.gif
│ │ │ ├── Face_141.gif
│ │ │ ├── Face_142.gif
│ │ │ ├── Face_14.gif
│ │ │ ├── Face_151.gif
│ │ │ ├── Face_152.gif
│ │ │ ├── Face_15.gif
│ │ │ ├── Face_161.gif
│ │ │ ├── Face_162.gif
│ │ │ ├── Face_16.gif
│ │ │ ├── Face_171.gif
│ │ │ ├── Face_172.gif
│ │ │ ├── Face_17.gif
│ │ │ ├── Face_181.gif
│ │ │ ├── Face_182.gif
│ │ │ ├── Face_18.gif
│ │ │ ├── Face_191.gif
│ │ │ ├── Face_192.gif
│ │ │ ├── Face_19.gif
│ │ │ ├── Face_1.gif
│ │ │ ├── Face_201.gif
│ │ │ ├── Face_202.gif
│ │ │ ├── Face_20.gif
│ │ │ ├── Face_210.gif
│ │ │ ├── Face_211.gif
│ │ │ ├── Face_212.gif
│ │ │ ├── Face_213.gif
│ │ │ ├── Face_21.gif
│ │ │ ├── Face_221.gif
│ │ │ ├── Face_222.gif
│ │ │ ├── Face_22.gif
│ │ │ ├── Face_231.gif
│ │ │ ├── Face_232.gif
│ │ │ ├── Face_23.gif
│ │ │ ├── Face_241.gif
│ │ │ ├── Face_242.gif
│ │ │ ├── Face_24.gif
│ │ │ ├── Face_251.gif
│ │ │ ├── Face_252.gif
│ │ │ ├── Face_25.gif
│ │ │ ├── Face_261.gif
│ │ │ ├── Face_262.gif
│ │ │ ├── Face_26.gif
│ │ │ ├── Face_271.gif
│ │ │ ├── Face_272.gif
│ │ │ ├── Face_27.gif
│ │ │ ├── Face_281.gif
│ │ │ ├── Face_282.gif
│ │ │ ├── Face_28.gif
│ │ │ ├── Face_291.gif
│ │ │ ├── Face_292.gif
│ │ │ ├── Face_29.gif
│ │ │ ├── Face_2.gif
│ │ │ ├── Face_301.gif
│ │ │ ├── Face_302.gif
│ │ │ ├── Face_30.gif
│ │ │ ├── Face_310.gif
│ │ │ ├── Face_311.gif
│ │ │ ├── Face_312.gif
│ │ │ ├── Face_313.gif
│ │ │ ├── Face_31.gif
│ │ │ ├── Face_321.gif
│ │ │ ├── Face_322.gif
│ │ │ ├── Face_32.gif
│ │ │ ├── Face_331.gif
│ │ │ ├── Face_332.gif
│ │ │ ├── Face_33.gif
│ │ │ ├── Face_341.gif
│ │ │ ├── Face_342.gif
│ │ │ ├── Face_34.gif
│ │ │ ├── Face_351.gif
│ │ │ ├── Face_352.gif
│ │ │ ├── Face_35.gif
│ │ │ ├── Face_361.gif
│ │ │ ├── Face_362.gif
│ │ │ ├── Face_36.gif
│ │ │ ├── Face_371.gif
│ │ │ ├── Face_372.gif
│ │ │ ├── Face_37.gif
│ │ │ ├── Face_381.gif
│ │ │ ├── Face_382.gif
│ │ │ ├── Face_38.gif
│ │ │ ├── Face_391.gif
│ │ │ ├── Face_392.gif
│ │ │ ├── Face_39.gif
│ │ │ ├── Face_3.gif
│ │ │ ├── Face_401.gif
│ │ │ ├── Face_402.gif
│ │ │ ├── Face_40.gif
│ │ │ ├── Face_410.gif
│ │ │ ├── Face_411.gif
│ │ │ ├── Face_412.gif
│ │ │ ├── Face_413.gif
│ │ │ ├── Face_41.gif
│ │ │ ├── Face_421.gif
│ │ │ ├── Face_422.gif
│ │ │ ├── Face_42.gif
│ │ │ ├── Face_431.gif
│ │ │ ├── Face_432.gif
│ │ │ ├── Face_43.gif
│ │ │ ├── Face_441.gif
│ │ │ ├── Face_442.gif
│ │ │ ├── Face_44.gif
│ │ │ ├── Face_451.gif
│ │ │ ├── Face_452.gif
│ │ │ ├── Face_45.gif
│ │ │ ├── Face_461.gif
│ │ │ ├── Face_462.gif
│ │ │ ├── Face_46.gif
│ │ │ ├── Face_471.gif
│ │ │ ├── Face_472.gif
│ │ │ ├── Face_47.gif
│ │ │ ├── Face_481.gif
│ │ │ ├── Face_482.gif
│ │ │ ├── Face_48.gif
│ │ │ ├── Face_491.gif
│ │ │ ├── Face_492.gif
│ │ │ ├── Face_49.gif
│ │ │ ├── Face_4.gif
│ │ │ ├── Face_501.gif
│ │ │ ├── Face_502.gif
│ │ │ ├── Face_50.gif
│ │ │ ├── Face_510.gif
│ │ │ ├── Face_511.gif
│ │ │ ├── Face_512.gif
│ │ │ ├── Face_513.gif
│ │ │ ├── Face_51.gif
│ │ │ ├── Face_521.gif
│ │ │ ├── Face_522.gif
│ │ │ ├── Face_52.gif
│ │ │ ├── Face_531.gif
│ │ │ ├── Face_532.gif
│ │ │ ├── Face_53.gif
│ │ │ ├── Face_541.gif
│ │ │ ├── Face_542.gif
│ │ │ ├── Face_54.gif
│ │ │ ├── Face_551.gif
│ │ │ ├── Face_552.gif
│ │ │ ├── Face_55.gif
│ │ │ ├── Face_561.gif
│ │ │ ├── Face_562.gif
│ │ │ ├── Face_56.gif
│ │ │ ├── Face_571.gif
│ │ │ ├── Face_572.gif
│ │ │ ├── Face_57.gif
│ │ │ ├── Face_581.gif
│ │ │ ├── Face_582.gif
│ │ │ ├── Face_58.gif
│ │ │ ├── Face_591.gif
│ │ │ ├── Face_592.gif
│ │ │ ├── Face_59.gif
│ │ │ ├── Face_5.gif
│ │ │ ├── Face_601.gif
│ │ │ ├── Face_602.gif
│ │ │ ├── Face_60.gif
│ │ │ ├── Face_610.gif
│ │ │ ├── Face_611.gif
│ │ │ ├── Face_612.gif
│ │ │ ├── Face_613.gif
│ │ │ ├── Face_61.gif
│ │ │ ├── Face_621.gif
│ │ │ ├── Face_622.gif
│ │ │ ├── Face_62.gif
│ │ │ ├── Face_631.gif
│ │ │ ├── Face_632.gif
│ │ │ ├── Face_63.gif
│ │ │ ├── Face_641.gif
│ │ │ ├── Face_642.gif
│ │ │ ├── Face_64.gif
│ │ │ ├── Face_651.gif
│ │ │ ├── Face_652.gif
│ │ │ ├── Face_65.gif
│ │ │ ├── Face_661.gif
│ │ │ ├── Face_662.gif
│ │ │ ├── Face_66.gif
│ │ │ ├── Face_671.gif
│ │ │ ├── Face_672.gif
│ │ │ ├── Face_67.gif
│ │ │ ├── Face_681.gif
│ │ │ ├── Face_682.gif
│ │ │ ├── Face_68.gif
│ │ │ ├── Face_691.gif
│ │ │ ├── Face_692.gif
│ │ │ ├── Face_69.gif
│ │ │ ├── Face_6.gif
│ │ │ ├── Face_701.gif
│ │ │ ├── Face_702.gif
│ │ │ ├── Face_70.gif
│ │ │ ├── Face_710.gif
│ │ │ ├── Face_711.gif
│ │ │ ├── Face_712.gif
│ │ │ ├── Face_713.gif
│ │ │ ├── Face_71.gif
│ │ │ ├── Face_721.gif
│ │ │ ├── Face_722.gif
│ │ │ ├── Face_72.gif
│ │ │ ├── Face_731.gif
│ │ │ ├── Face_732.gif
│ │ │ ├── Face_73.gif
│ │ │ ├── Face_741.gif
│ │ │ ├── Face_742.gif
│ │ │ ├── Face_74.gif
│ │ │ ├── Face_751.gif
│ │ │ ├── Face_752.gif
│ │ │ ├── Face_75.gif
│ │ │ ├── Face_761.gif
│ │ │ ├── Face_762.gif
│ │ │ ├── Face_76.gif
│ │ │ ├── Face_771.gif
│ │ │ ├── Face_772.gif
│ │ │ ├── Face_77.gif
│ │ │ ├── Face_781.gif
│ │ │ ├── Face_782.gif
│ │ │ ├── Face_78.gif
│ │ │ ├── Face_791.gif
│ │ │ ├── Face_792.gif
│ │ │ ├── Face_79.gif
│ │ │ ├── Face_7.gif
│ │ │ ├── Face_801.gif
│ │ │ ├── Face_802.gif
│ │ │ ├── Face_80.gif
│ │ │ ├── Face_810.gif
│ │ │ ├── Face_811.gif
│ │ │ ├── Face_812.gif
│ │ │ ├── Face_813.gif
│ │ │ ├── Face_81.gif
│ │ │ ├── Face_821.gif
│ │ │ ├── Face_822.gif
│ │ │ ├── Face_82.gif
│ │ │ ├── Face_831.gif
│ │ │ ├── Face_832.gif
│ │ │ ├── Face_83.gif
│ │ │ ├── Face_841.gif
│ │ │ ├── Face_842.gif
│ │ │ ├── Face_84.gif
│ │ │ ├── Face_851.gif
│ │ │ ├── Face_852.gif
│ │ │ ├── Face_85.gif
│ │ │ ├── Face_861.gif
│ │ │ ├── Face_862.gif
│ │ │ ├── Face_86.gif
│ │ │ ├── Face_871.gif
│ │ │ ├── Face_872.gif
│ │ │ ├── Face_87.gif
│ │ │ ├── Face_881.gif
│ │ │ ├── Face_882.gif
│ │ │ ├── Face_88.gif
│ │ │ ├── Face_891.gif
│ │ │ ├── Face_892.gif
│ │ │ ├── Face_89.gif
│ │ │ ├── Face_8.gif
│ │ │ ├── Face_901.gif
│ │ │ ├── Face_902.gif
│ │ │ ├── Face_90.gif
│ │ │ ├── Face_910.gif
│ │ │ ├── Face_911.gif
│ │ │ ├── Face_912.gif
│ │ │ ├── Face_913.gif
│ │ │ ├── Face_91.gif
│ │ │ ├── Face_921.gif
│ │ │ ├── Face_922.gif
│ │ │ ├── Face_92.gif
│ │ │ ├── Face_931.gif
│ │ │ ├── Face_932.gif
│ │ │ ├── Face_93.gif
│ │ │ ├── Face_941.gif
│ │ │ ├── Face_942.gif
│ │ │ ├── Face_94.gif
│ │ │ ├── Face_951.gif
│ │ │ ├── Face_952.gif
│ │ │ ├── Face_95.gif
│ │ │ ├── Face_961.gif
│ │ │ ├── Face_962.gif
│ │ │ ├── Face_96.gif
│ │ │ ├── Face_971.gif
│ │ │ ├── Face_972.gif
│ │ │ ├── Face_97.gif
│ │ │ ├── Face_981.gif
│ │ │ ├── Face_982.gif
│ │ │ ├── Face_98.gif
│ │ │ ├── Face_991.gif
│ │ │ ├── Face_992.gif
│ │ │ ├── Face_99.gif
│ │ │ ├── Face_9.gif
│ │ │ ├── favicon.ico
│ │ │ ├── find.png
│ │ │ ├── frameBorderEffect_mouseDownDraw.png
│ │ │ ├── frameBorderEffect_normalDraw.png
│ │ │ ├── friendGroupTitlebg.png
│ │ │ ├── friendlist_background.jpg
│ │ │ ├── friendTitlebg.png
│ │ │ ├── friendTitleOpenbg.png
│ │ │ ├── GroupCollapse1.png
│ │ │ ├── GroupCollapse2.png
│ │ │ ├── GroupCollapse.png
│ │ │ ├── GroupExpand1.png
│ │ │ ├── GroupExpand2.png
│ │ │ ├── GroupExpand.png
│ │ │ ├── holiday_normal.bmp
│ │ │ ├── Icon@2x1.png
│ │ │ ├── Icon_2x.jpg
│ │ │ ├── Icon@2x.png
│ │ │ ├── IM_Chat1.png
│ │ │ ├── IM_Chat2.png
│ │ │ ├── IM_Chat.png
│ │ │ ├── IM_Email1.png
│ │ │ ├── IM_Email2.png
│ │ │ ├── IM_Email.png
│ │ │ ├── IM_Message1.png
│ │ │ ├── IM_Message2.png
│ │ │ ├── IM_Message.png
│ │ │ ├── IM_Speech1.png
│ │ │ ├── IM_Speech2.png
│ │ │ ├── IM_Speech.png
│ │ │ ├── keyboard.png
│ │ │ ├── login_btn_down.png
│ │ │ ├── login_btn_focus.png
│ │ │ ├── login_btn_highlight.png
│ │ │ ├── login_btn_normal.png
│ │ │ ├── login_inputbtn_down.bmp
│ │ │ ├── login_inputbtn_highlight.bmp
│ │ │ ├── login_inputbtn_normal.bmp
│ │ │ ├── login_light_bkg.png
│ │ │ ├── login_png_bkg.png
│ │ │ ├── login_whilt_bkg.png
│ │ │ ├── mail.png
│ │ │ ├── MainBkg.png
│ │ │ ├── main_bluelight_bkg.png
│ │ │ ├── main_group_down.png
│ │ │ ├── main_group_highlight.png
│ │ │ ├── main_group_normal.png
│ │ │ ├── MainPanel_ContactHeadNormal_paddingDraw.png
│ │ │ ├── MainPanel_ContactHeadSelect_paddingDraw.png
│ │ │ ├── MainPanel_ContactMainTabButton_texture2.png
│ │ │ ├── MainPanel_ContactMainTabButton_texture.png
│ │ │ ├── MainPanel_FolderNode_collapseTextureHighlight.png
│ │ │ ├── MainPanel_FolderNode_collapseTexture.png
│ │ │ ├── MainPanel_FolderNode_expandTextureHighlight.png
│ │ │ ├── MainPanel_FolderNode_expandTexture.png
│ │ │ ├── MainPanel_GroupMainTabButton_texture2.png
│ │ │ ├── MainPanel_GroupMainTabButton_texture.png
│ │ │ ├── MainPanel_RecentMainTabButton_texture2.png
│ │ │ ├── MainPanel_RecentMainTabButton_texture.png
│ │ │ ├── MainPanel_TitleBackgroundBluelight_background.png
│ │ │ ├── main_png_bkg.png
│ │ │ ├── main_search_bkg.png
│ │ │ ├── main_search_delbormal.png
│ │ │ ├── main_search_deldown.png
│ │ │ ├── main_search_delhighlight.png
│ │ │ ├── main_search_delnormal.png
│ │ │ ├── main_search_down.png
│ │ │ ├── main_search_enter.png
│ │ │ ├── main_search_frame.png
│ │ │ ├── main_search_normal.png
│ │ │ ├── main_tab_bkg.png
│ │ │ ├── main_tabbtn_lefthighlight.png
│ │ │ ├── main_tabbtn_leftnormal.png
│ │ │ ├── main_tabbtn_righthighlight.png
│ │ │ ├── main_tabbtn_rightnormal.png
│ │ │ ├── main_tab_check.bmp
│ │ │ ├── main_tab_highlight.png
│ │ │ ├── MediaButtonnormal1.bmp
│ │ │ ├── menu_arrow.png
│ │ │ ├── menu_bkg.png
│ │ │ ├── menu_btn_highlight.png
│ │ │ ├── menu_btn_normal.png
│ │ │ ├── menu_check.png
│ │ │ ├── menu_cutling.png
│ │ │ ├── menu_highlight.png
│ │ │ ├── message.png
│ │ │ ├── Min11.png
│ │ │ ├── Min12.png
│ │ │ ├── Min1.png
│ │ │ ├── Min2.png
│ │ │ ├── Min3.png
│ │ │ ├── Min.png
│ │ │ ├── music1.bmp
│ │ │ ├── music2.bmp
│ │ │ ├── music.bmp
│ │ │ ├── MyCursor.cur
│ │ │ ├── netsetting.png
│ │ │ ├── newid.png
│ │ │ ├── Other11.png
│ │ │ ├── Other12.png
│ │ │ ├── Other1.png
│ │ │ ├── Other2.png
│ │ │ ├── Other3.png
│ │ │ ├── Other.png
│ │ │ ├── Padding4Hot.png
│ │ │ ├── Padding4Normal.png
│ │ │ ├── Padding4Press.png
│ │ │ ├── Padding4Select.png
│ │ │ ├── password.png
│ │ │ ├── pic_check.png
│ │ │ ├── pic_defaultcolor_normal.png
│ │ │ ├── q111.jpg
│ │ │ ├── q112.jpg
│ │ │ ├── q11.jpg
│ │ │ ├── q12.jpg
│ │ │ ├── q13.jpg
│ │ │ ├── q1.jpg
│ │ │ ├── q21.jpg
│ │ │ ├── q221.jpg
│ │ │ ├── q222.jpg
│ │ │ ├── q22.jpg
│ │ │ ├── q23.jpg
│ │ │ ├── q2.jpg
│ │ │ ├── q31.jpg
│ │ │ ├── q32.jpg
│ │ │ ├── q3.jpg
│ │ │ ├── qqEdu11.ico
│ │ │ ├── qqEdu12.ico
│ │ │ ├── qqEdu1.ico
│ │ │ ├── qqEdu.ico
│ │ │ ├── QueryCtrl1.png
│ │ │ ├── QueryCtrl2.png
│ │ │ ├── QueryCtrl.png
│ │ │ ├── qzone16.png
│ │ │ ├── rb_click.bmp
│ │ │ ├── rb_click_move.bmp
│ │ │ ├── rb_no.bmp
│ │ │ ├── rb_no_move.bmp
│ │ │ ├── RecentColorBkg.png
│ │ │ ├── scrollbar_arrowdown_down.png
│ │ │ ├── scrollbar_arrowdown_highlight.png
│ │ │ ├── scrollbar_arrowdown_normal.png
│ │ │ ├── scrollbar_arrowleft_down.png
│ │ │ ├── scrollbar_arrowleft_highlight.png
│ │ │ ├── scrollbar_arrowleft_normal.png
│ │ │ ├── scrollbar_arrowright_down.png
│ │ │ ├── scrollbar_arrowright_highlight.png
│ │ │ ├── scrollbar_arrowright_normal.png
│ │ │ ├── scrollbar_arrowup_down.png
│ │ │ ├── scrollbar_arrowup_highlight.png
│ │ │ ├── scrollbar_arrowup_normal.png
│ │ │ ├── scrollbar_bar_down.png
│ │ │ ├── scrollbar_bar_highlight.png
│ │ │ ├── scrollbar_bar_normal.png
│ │ │ ├── scrollbar_bkg.png
│ │ │ ├── scrollbar_down_down.png
│ │ │ ├── scrollbar_down_highlight.png
│ │ │ ├── scrollbar_down_normal.png
│ │ │ ├── scrollbar_horzbar_down.png
│ │ │ ├── scrollbar_horzbar_highlight.png
│ │ │ ├── scrollbar_horzbar_normal.png
│ │ │ ├── scrollbar_horz_bkg.png
│ │ │ ├── ShadingBkg.png
│ │ │ ├── shading_highlight.png
│ │ │ ├── sm100_16.bmp
│ │ │ ├── sm101_16.bmp
│ │ │ ├── sm10_16.bmp
│ │ │ ├── sm102_16.bmp
│ │ │ ├── sm103_16.bmp
│ │ │ ├── sm104_16.bmp
│ │ │ ├── sm105_16.bmp
│ │ │ ├── sm11_16.bmp
│ │ │ ├── sm113_16.bmp
│ │ │ ├── sm114_16.bmp
│ │ │ ├── sm115_16.bmp
│ │ │ ├── sm116_16.bmp
│ │ │ ├── sm1_16.bmp
│ │ │ ├── sm117_16.bmp
│ │ │ ├── sm118_16.bmp
│ │ │ ├── sm119_16.bmp
│ │ │ ├── sm120_16.bmp
│ │ │ ├── sm121_16.bmp
│ │ │ ├── sm12_16.bmp
│ │ │ ├── sm122_16.bmp
│ │ │ ├── sm126_16.bmp
│ │ │ ├── sm127_16.bmp
│ │ │ ├── sm128_16.bmp
│ │ │ ├── sm129_16.bmp
│ │ │ ├── sm130_16.bmp
│ │ │ ├── sm131_16.bmp
│ │ │ ├── sm13_16.bmp
│ │ │ ├── sm132_16.bmp
│ │ │ ├── sm133_16.bmp
│ │ │ ├── sm134_16.bmp
│ │ │ ├── sm135_16.bmp
│ │ │ ├── sm136_16.bmp
│ │ │ ├── sm137_16.bmp
│ │ │ ├── sm138_16.bmp
│ │ │ ├── sm139_16.bmp
│ │ │ ├── sm140_16.bmp
│ │ │ ├── sm141_16.bmp
│ │ │ ├── sm14_16.bmp
│ │ │ ├── sm142_16.bmp
│ │ │ ├── sm143_16.bmp
│ │ │ ├── sm144_16.bmp
│ │ │ ├── sm145_16.bmp
│ │ │ ├── sm146_16.bmp
│ │ │ ├── sm147_16.bmp
│ │ │ ├── sm148_16.bmp
│ │ │ ├── sm149_16.bmp
│ │ │ ├── sm150_16.bmp
│ │ │ ├── sm151_16.bmp
│ │ │ ├── sm15_16.bmp
│ │ │ ├── sm152_16.bmp
│ │ │ ├── sm153_16.bmp
│ │ │ ├── sm154_16.bmp
│ │ │ ├── sm155_16.bmp
│ │ │ ├── sm156_16.bmp
│ │ │ ├── sm157_16.bmp
│ │ │ ├── sm158_16.bmp
│ │ │ ├── sm159_16.bmp
│ │ │ ├── sm160_16.bmp
│ │ │ ├── sm161_16.bmp
│ │ │ ├── sm16_16.bmp
│ │ │ ├── sm162_16.bmp
│ │ │ ├── sm163_16.bmp
│ │ │ ├── sm164_16.bmp
│ │ │ ├── sm165_16.bmp
│ │ │ ├── sm166_16.bmp
│ │ │ ├── sm167_16.bmp
│ │ │ ├── sm168_16.bmp
│ │ │ ├── sm169_16.bmp
│ │ │ ├── sm170_16.bmp
│ │ │ ├── sm171_16.bmp
│ │ │ ├── sm17_16.bmp
│ │ │ ├── sm172_16.bmp
│ │ │ ├── sm173_16.bmp
│ │ │ ├── sm174_16.bmp
│ │ │ ├── sm175_16.bmp
│ │ │ ├── sm176_16.bmp
│ │ │ ├── sm177_16.bmp.bmp
│ │ │ ├── sm178_16.bmp
│ │ │ ├── sm179_16.bmp
│ │ │ ├── sm180_16.bmp
│ │ │ ├── sm181_16.bmp
│ │ │ ├── sm18_16.bmp
│ │ │ ├── sm182_16.bmp
│ │ │ ├── sm183_16.bmp
│ │ │ ├── sm184_16.bmp
│ │ │ ├── sm185_16.bmp
│ │ │ ├── sm186_16.bmp
│ │ │ ├── sm187_16.bmp
│ │ │ ├── sm188_16.bmp
│ │ │ ├── sm189_16.bmp
│ │ │ ├── sm190_16.bmp
│ │ │ ├── sm191_16.bmp
│ │ │ ├── sm19_16.bmp
│ │ │ ├── sm192_16.bmp
│ │ │ ├── sm193_16.bmp
│ │ │ ├── sm194_16.bmp
│ │ │ ├── sm195_16.bmp
│ │ │ ├── sm196_16.bmp
│ │ │ ├── sm197_16.bmp
│ │ │ ├── sm198_16.bmp
│ │ │ ├── sm199_16.bmp
│ │ │ ├── sm200_16.bmp
│ │ │ ├── sm201_16.bmp
│ │ │ ├── sm20_16.bmp
│ │ │ ├── sm21_16.bmp
│ │ │ ├── sm2_16.bmp
│ │ │ ├── sm22_16.bmp
│ │ │ ├── sm23_16.bmp
│ │ │ ├── sm24_16.bmp
│ │ │ ├── sm25_16.bmp
│ │ │ ├── sm26_16.bmp
│ │ │ ├── sm27_16.bmp
│ │ │ ├── sm28_16.bmp
│ │ │ ├── sm29_16.bmp
│ │ │ ├── sm30_16.bmp
│ │ │ ├── sm31_16.bmp
│ │ │ ├── sm3_16.bmp
│ │ │ ├── sm32_16.bmp
│ │ │ ├── sm33_16.bmp
│ │ │ ├── sm34_16.bmp
│ │ │ ├── sm35_16.bmp
│ │ │ ├── sm36_16.bmp
│ │ │ ├── sm37_16.bmp
│ │ │ ├── sm38_16.bmp
│ │ │ ├── sm39_16.bmp
│ │ │ ├── sm40_16.bmp
│ │ │ ├── sm41_16.bmp
│ │ │ ├── sm4_16.bmp
│ │ │ ├── sm42_16.bmp
│ │ │ ├── sm43_16.bmp
│ │ │ ├── sm44_16.bmp
│ │ │ ├── sm45_16.bmp
│ │ │ ├── sm46_16.bmp
│ │ │ ├── sm47_16.bmp
│ │ │ ├── sm48_16.bmp
│ │ │ ├── sm49_16.bmp
│ │ │ ├── sm50_16.bmp
│ │ │ ├── sm51_16.bmp
│ │ │ ├── sm5_16.bmp
│ │ │ ├── sm52_16.bmp
│ │ │ ├── sm53_16.bmp
│ │ │ ├── sm54_16.bmp
│ │ │ ├── sm55_16.bmp
│ │ │ ├── sm56_16.bmp
│ │ │ ├── sm57_16.bmp
│ │ │ ├── sm58_16.bmp
│ │ │ ├── sm59_16.bmp
│ │ │ ├── sm60_16.bmp
│ │ │ ├── sm61_16.bmp
│ │ │ ├── sm6_16.bmp
│ │ │ ├── sm62_16.bmp
│ │ │ ├── sm63_16.bmp
│ │ │ ├── sm64_16.bmp
│ │ │ ├── sm65_16.bmp
│ │ │ ├── sm66_16.bmp
│ │ │ ├── sm67_16.bmp
│ │ │ ├── sm68_16.bmp
│ │ │ ├── sm69_16.bmp
│ │ │ ├── sm70_16.bmp
│ │ │ ├── sm71_16.bmp
│ │ │ ├── sm7_16.bmp
│ │ │ ├── sm72_16.bmp
│ │ │ ├── sm73_16.bmp
│ │ │ ├── sm74_16.bmp
│ │ │ ├── sm75_16.bmp
│ │ │ ├── sm76_16.bmp
│ │ │ ├── sm77_16.bmp
│ │ │ ├── sm78_16.bmp
│ │ │ ├── sm79_16.bmp
│ │ │ ├── sm80_16.bmp
│ │ │ ├── sm81_16.bmp
│ │ │ ├── sm8_16.bmp
│ │ │ ├── sm82_16.bmp
│ │ │ ├── sm83_16.bmp
│ │ │ ├── sm84_16.bmp
│ │ │ ├── sm85_16.bmp
│ │ │ ├── sm86_16.bmp
│ │ │ ├── sm87_16.bmp
│ │ │ ├── sm88_16.bmp
│ │ │ ├── sm89_16.bmp
│ │ │ ├── sm90_16.bmp
│ │ │ ├── sm91_16.bmp
│ │ │ ├── sm9_16.bmp
│ │ │ ├── sm92_16.bmp
│ │ │ ├── sm93_16.bmp
│ │ │ ├── sm94_16.bmp
│ │ │ ├── sm95_16.bmp
│ │ │ ├── sm96_16.bmp
│ │ │ ├── sm97_16.bmp
│ │ │ ├── sm98_16.bmp
│ │ │ ├── sm99_16.bmp
│ │ │ ├── Sound_Call1.wav
│ │ │ ├── Sound_Call.wav
│ │ │ ├── Sound_Folder1.wav
│ │ │ ├── Sound_Folder.wav
│ │ │ ├── Sound_Global1.wav
│ │ │ ├── Sound_Global.wav
│ │ │ ├── Sound_Msg1.wav
│ │ │ ├── Sound_Msg.wav
│ │ │ ├── Sound_System1.wav
│ │ │ ├── Sound_System.wav
│ │ │ ├── State_Away1.png
│ │ │ ├── State_Away2.png
│ │ │ ├── State_Away.png
│ │ │ ├── State_Busy1.png
│ │ │ ├── State_Busy2.png
│ │ │ ├── State_Busy.png
│ │ │ ├── State_Hide1.png
│ │ │ ├── State_Hide2.png
│ │ │ ├── State_Hide.png
│ │ │ ├── State_Offline1.png
│ │ │ ├── State_Offline2.png
│ │ │ ├── State_Offline.png
│ │ │ ├── State_Online1.png
│ │ │ ├── State_Online2.png
│ │ │ ├── State_Online.png
│ │ │ ├── State_Quiet1.png
│ │ │ ├── State_Quiet2.png
│ │ │ ├── State_Quiet.png
│ │ │ ├── sysmessagebox_errorFile.png
│ │ │ ├── sysmessagebox_inforFile.png
│ │ │ ├── sysmessagebox_questionFile.png
│ │ │ ├── sysmessagebox_warningFile.png
│ │ │ ├── tabPage_background.png
│ │ │ ├── TbAdjustColorNormal.png
│ │ │ ├── TbAdjustColorPushedBkg.png
│ │ │ ├── TbAdjustColorPushed.png
│ │ │ ├── TbShadingNormal.png
│ │ │ ├── TbShadingPushed.png
│ │ │ ├── Tools.png
│ │ │ ├── User_Default1.png
│ │ │ ├── User_Default2.png
│ │ │ ├── User_Default.png
│ │ │ ├── WBlog_TabBtn_Focus.png
│ │ │ ├── WBlog_TabBtn_Normal.png
│ │ │ ├── 托盘图标11.ico
│ │ │ ├── 托盘图标12.ico
│ │ │ └── 托盘图标1.ico
│ │ ├── SimpleIMClient.csproj
│ │ ├── SimpleIMClient.csproj.user
│ │ └── 托盘图标1.ico
│ ├── SimpleIM.Data
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── log4net.dll
│ │ │ ├── SimpleIM.Data.dll
│ │ │ └── SimpleIM.Data.pdb
│ │ ├── Common
│ │ │ ├── SqlHelper.cs
│ │ │ ├── SqlParameterCache.cs
│ │ │ └── SQLParameterHelper.cs
│ │ ├── DBOfflineMessage.cs
│ │ ├── DBRcUsers.cs
│ │ ├── DBRoleGroup.cs
│ │ ├── DBUserGroup.cs
│ │ ├── NetworkComms.net 通信框架V3商业版.txt
│ │ ├── obj
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SimpleIM.Data.csproj.FileListAbsolute.txt
│ │ │ ├── SimpleIM.Data.dll
│ │ │ └── SimpleIM.Data.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SimpleIM.Data.csproj
│ │ └── SimpleIM.Data.csproj.user
│ ├── SimpleIMServer
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── log4net.dll
│ │ │ ├── NetworkCommsDotNet.dll
│ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ ├── NetworkCommsDotNet.xml
│ │ │ ├── NLog.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── ProtobufSerializer.dll
│ │ │ ├── ProtobufSerializer.xml
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ ├── SevenZipLZMACompressor.xml
│ │ │ ├── SimpleIM.Business.dll
│ │ │ ├── SimpleIM.Business.pdb
│ │ │ ├── SimpleIM.Data.dll
│ │ │ ├── SimpleIM.Data.pdb
│ │ │ ├── SimpleIMServer.exe
│ │ │ ├── SimpleIMServer.exe.config
│ │ │ ├── SimpleIMServer.pdb
│ │ │ └── 查看连接数.txt
│ │ ├── LogInfo.cs
│ │ ├── LogTools.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── NetworkComms.net 通信框架V3商业版.txt
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SimpleIMServer.csproj.FileListAbsolute.txt
│ │ │ ├── SimpleIMServer.csproj.GenerateResource.Cache
│ │ │ ├── SimpleIMServer.csprojResolveAssemblyReference.cache
│ │ │ ├── SimpleIMServer.exe
│ │ │ ├── SimpleIMServer.MainForm.resources
│ │ │ ├── SimpleIMServer.pdb
│ │ │ └── SimpleIMServer.Properties.Resources.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SimpleIMServer.csproj
│ │ └── SimpleIMServer.csproj.user
│ └── 微风IM V3.1.txt
└── MarcF-networkcomms.net-dde59c425133
├── ChangeLog.txt
├── COPYING.txt
├── DebugTests
│ ├── app.config
│ ├── BasicSend.cs
│ ├── bin
│ │ └── Release
│ │ ├── DebugTests.exe
│ │ ├── DebugTests.exe.config
│ │ ├── DebugTests.XML
│ │ ├── DistributedFileSystem.dll
│ │ ├── DistributedFileSystem.pdb
│ │ ├── DistributedFileSystem.xml
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── ICSharpCode.SharpZipLib.dll
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.xml
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── QuickLZCompressor.dll
│ │ ├── QuickLZCompressor.pdb
│ │ ├── QuickLZCompressor.xml
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ ├── SevenZipLZMACompressor.xml
│ │ ├── SharpZipLibCompressor.dll
│ │ ├── SharpZipLibCompressor.pdb
│ │ └── SharpZipLibCompressor.xml
│ ├── DebugTest.cs
│ ├── DebugTests.csproj
│ ├── DFSTest.cs
│ ├── ExampleHelper.cs
│ ├── LoadTest.cs
│ ├── LogAnalyser.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DebugTests.csproj.FileListAbsolute.txt
│ │ ├── DebugTests.csprojResolveAssemblyReference.cache
│ │ ├── DebugTests.exe
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ThreadPoolTest.cs
├── DistributedFileSystem
│ ├── bin
│ │ └── Release
│ │ ├── DistributedFileSystem.dll
│ │ ├── DistributedFileSystem.pdb
│ │ ├── DistributedFileSystem.XML
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.xml
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ └── SevenZipLZMACompressor.xml
│ ├── ChunkAvailabilityRequest.cs
│ ├── DFSAllowedPeerIPs.txt
│ ├── DFS.cs
│ ├── DFSDisallowedPeerIPs.txt
│ ├── DistributedFileSystem.csproj
│ ├── DistributedItem.cs
│ ├── ItemAssemblyConfig.cs
│ ├── ItemBuildTarget.cs
│ ├── ItemLinkRequest.cs
│ ├── ItemRemovalUpdate.cs
│ ├── LimitedParallelismTaskScheduler.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DistributedFileSystem.csproj.FileListAbsolute.txt
│ │ ├── DistributedFileSystem.csprojResolveAssemblyReference.cache
│ │ ├── DistributedFileSystem.dll
│ │ └── DistributedFileSystem.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SwarmChunkAvailability.cs
├── DLL
│ ├── Net20
│ │ ├── NLog.dll
│ │ └── protobuf-net.dll
│ ├── Net35
│ │ ├── NLog.dll
│ │ └── protobuf-net.dll
│ ├── Net40
│ │ ├── NLog.dll
│ │ └── protobuf-net.dll
│ ├── WP8
│ │ ├── NLog.dll
│ │ └── protobuf-net.dll
│ ├── Xamarin.Android
│ │ └── protobuf-net.dll
│ └── Xamarin.iOS
│ └── protobuf-net.dll
├── Documentation
│ └── Documentation.shfbproj
├── DPSBase
│ ├── AsyncStreamCopier.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.XML
│ │ │ └── protobuf-net.dll
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.XML
│ │ └── protobuf-net.dll
│ ├── BinaryFormaterSerializer.cs
│ ├── DataProcessor.cs
│ ├── DataSerializer.cs
│ ├── DataSerializerProcessorAttribute.cs
│ ├── DPSBase.csproj
│ ├── DPSManager.cs
│ ├── Exception.cs
│ ├── MD5.cs
│ ├── NetworkComms.net 通信框架V3商业版.txt
│ ├── NullSerializer.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DPSBase.csproj.FileListAbsolute.txt
│ │ │ ├── DPSBase.csprojResolveAssemblyReference.cache
│ │ │ ├── DPSBase.dll
│ │ │ └── DPSBase.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DPSBase.csproj.FileListAbsolute.txt
│ │ ├── DPSBase.csprojResolveAssemblyReference.cache
│ │ ├── DPSBase.dll
│ │ └── DPSBase.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ProtobufSerializer.cs
│ ├── RijndaelPSKEncrypter.cs
│ ├── StreamSendWrapper.cs
│ ├── StreamWriteWithTimeout.cs
│ └── ThreadSafeStream.cs
├── ExamplesChat.WPF
│ ├── app.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ChatAppBase.cs
│ ├── ChatAppWPF.cs
│ ├── ChatMessage.cs
│ ├── ExamplesChat.WPF.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── NetworkCommsLogo.ico
│ ├── obj
│ │ ├── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ExamplesWPFChat_MarkupCompile.i.cache
│ │ │ └── MainWindow.g.i.cs
│ │ └── Release
│ │ ├── App.g.i.cs
│ │ ├── build.force
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ExamplesWPFChat_MarkupCompile.i.cache
│ │ └── MainWindow.g.i.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── ExamplesConsole
│ ├── AdvancedSend.cs
│ ├── app.config
│ ├── BasicSend.cs
│ ├── DFSTest.cs
│ ├── ExampleHelper.cs
│ ├── ExamplesConsole.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── build.force
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RPCExample.cs
│ └── SpeedTest.cs
├── ExamplesConsole.VB
│ ├── BasicSend.vb
│ ├── ExampleHelper.vb
│ ├── ExamplesConsole.VB.vbproj
│ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ └── Program.vb
├── ExamplesFileTransfer.WPF
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ExamplesFileTransfer.WPF.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── NetworkCommsLogo.ico
│ ├── obj
│ │ ├── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ExamplesWPFFileTransfer_MarkupCompile.i.cache
│ │ │ └── MainWindow.g.i.cs
│ │ └── Release
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── build.force
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ExamplesFileTransfer.WPF.csproj.FileListAbsolute.txt
│ │ ├── ExamplesFileTransfer.WPF.csproj.GenerateResource.Cache
│ │ ├── ExamplesFileTransfer.WPF.csprojResolveAssemblyReference.cache
│ │ ├── ExamplesWPFFileTransfer.g.resources
│ │ ├── ExamplesWPFFileTransfer_MarkupCompile.cache
│ │ ├── ExamplesWPFFileTransfer_MarkupCompile.i.cache
│ │ ├── ExamplesWPFFileTransfer.Properties.Resources.resources
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ReceivedFile.cs
│ └── SendInfo.cs
├── Mobile.Business
│ ├── bin
│ │ └── Release
│ │ ├── log4net.dll
│ │ ├── Mobile.Business.dll
│ │ ├── Mobile.Business.pdb
│ │ ├── Mobile.Data.dll
│ │ ├── Mobile.Data.pdb
│ │ └── protobuf-net.dll
│ ├── Do
│ │ └── DoUsers.cs
│ ├── Entity
│ │ └── Users.cs
│ ├── Mobile.Business.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Mobile.Business.csproj.FileListAbsolute.txt
│ │ ├── Mobile.Business.csprojResolveAssemblyReference.cache
│ │ ├── Mobile.Business.dll
│ │ └── Mobile.Business.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ResMsgContract.cs
├── NetworkCommsDotNet
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ ├── NetworkCommsDotNet.XML
│ │ │ ├── NLog.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ └── SevenZipLZMACompressor.xml
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.XML
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ └── SevenZipLZMACompressor.xml
│ ├── ClassDiagram1.cd
│ ├── ClassDiagram2.cd
│ ├── ClassDiagram3.cd
│ ├── Connection
│ │ ├── ConnectionCreate.cs
│ │ ├── ConnectionDelegatesHandlers.cs
│ │ ├── ConnectionIncomingData.cs
│ │ ├── ConnectionSendClose.cs
│ │ ├── ConnectionStatic.cs
│ │ ├── ConnectionType.cs
│ │ ├── SentPacket.cs
│ │ ├── TCP
│ │ │ ├── TCPConnectionCreate.cs
│ │ │ ├── TCPConnectionInstance.cs
│ │ │ └── TCPConnectionStatic.cs
│ │ └── UDP
│ │ ├── UDPClientThreadSafe.cs
│ │ ├── UDPConnection.cs
│ │ ├── UDPConnectionStatic.cs
│ │ └── UDPOptions.cs
│ ├── ConnectionInfo.cs
│ ├── Event
│ │ └── CustomEventArgs.cs
│ ├── GPLV3License.txt
│ ├── NetworkComms.cs
│ ├── NetworkCommsDotNet.csproj
│ ├── NetworkCommsDotNet.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── NetworkCommsDotNet.csproj.FileListAbsolute.txt
│ │ │ ├── NetworkCommsDotNet.csprojResolveAssemblyReference.cache
│ │ │ └── NetworkCommsDotNet.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── NetworkCommsDotNet.csproj.FileListAbsolute.txt
│ │ ├── NetworkCommsDotNet.csprojResolveAssemblyReference.cache
│ │ ├── NetworkCommsDotNet.dll
│ │ └── NetworkCommsDotNet.pdb
│ ├── Packet.cs
│ ├── PacketHeader.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ReservedPacketType.cs
│ ├── RuntimeEnvironment.cs
│ ├── SendReceiveOptions.cs
│ ├── Tools
│ │ ├── Adler32.cs
│ │ ├── CommsMath.cs
│ │ ├── CommsThreadPool.cs
│ │ ├── IPExtAccess.cs
│ │ ├── IPTools.cs
│ │ ├── PacketBuilder.cs
│ │ ├── PacketUnwrappers.cs
│ │ ├── PriorityQueue.cs
│ │ ├── PriorityQueueItem.cs
│ │ ├── QueueItemPriority.cs
│ │ └── ShortGUID.cs
│ └── V3商业版.txt
├── NetworkCommsDotNet2.3.1.sln
├── NetworkCommsDotNet2.3.1.suo
├── NetworkCommsLogo.ico
├── Platforms
│ ├── Net35
│ │ ├── DPSBase
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.XML
│ │ │ │ └── protobuf-net.dll
│ │ │ ├── DPSBase.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── DPSBase.csproj.FileListAbsolute.txt
│ │ │ │ ├── DPSBase.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DPSBase.dll
│ │ │ │ └── DPSBase.pdb
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── NetworkCommsDotNet
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── NetworkCommsDotNet.dll
│ │ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ │ ├── NetworkCommsDotNet.XML
│ │ │ │ ├── NLog.dll
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ │ └── SevenZipLZMACompressor.xml
│ │ │ ├── NetworkCommsDotNet.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── NetworkCommsDotNet.csproj.FileListAbsolute.txt
│ │ │ │ ├── NetworkCommsDotNet.csprojResolveAssemblyReference.cache
│ │ │ │ ├── NetworkCommsDotNet.dll
│ │ │ │ └── NetworkCommsDotNet.pdb
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── QuickLZCompressor
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── QuickLZCompressor.dll
│ │ │ │ ├── QuickLZCompressor.pdb
│ │ │ │ └── QuickLZCompressor.XML
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── QuickLZCompressor.csproj.FileListAbsolute.txt
│ │ │ │ ├── QuickLZCompressor.dll
│ │ │ │ └── QuickLZCompressor.pdb
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── QuickLZCompressor.csproj
│ │ ├── SevenZipLZMACompressor
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ │ └── SevenZipLZMACompressor.XML
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── SevenZipLZMACompressor.csproj.FileListAbsolute.txt
│ │ │ │ ├── SevenZipLZMACompressor.csprojResolveAssemblyReference.cache
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ └── SevenZipLZMACompressor.pdb
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── SevenZipLZMACompressor.csproj
│ │ └── SharpZipLibCompressor
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── ICSharpCode.SharpZipLib.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SharpZipLibCompressor.dll
│ │ │ ├── SharpZipLibCompressor.pdb
│ │ │ └── SharpZipLibCompressor.XML
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SharpZipLibCompressor.csproj.FileListAbsolute.txt
│ │ │ ├── SharpZipLibCompressor.dll
│ │ │ └── SharpZipLibCompressor.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SharpZipLibCompressor.csproj
│ ├── Net40
│ │ ├── DPSBase
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.XML
│ │ │ │ └── protobuf-net.dll
│ │ │ ├── DPSBase.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── DPSBase.csproj.FileListAbsolute.txt
│ │ │ │ ├── DPSBase.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DPSBase.dll
│ │ │ │ └── DPSBase.pdb
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── NetworkCommsDotNet
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── NetworkCommsDotNet.dll
│ │ │ │ ├── NetworkCommsDotNet.pdb
│ │ │ │ ├── NetworkCommsDotNet.XML
│ │ │ │ ├── NLog.dll
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ │ └── SevenZipLZMACompressor.xml
│ │ │ ├── NetworkCommsDotNet.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── NetworkCommsDotNet.csproj.FileListAbsolute.txt
│ │ │ │ ├── NetworkCommsDotNet.csprojResolveAssemblyReference.cache
│ │ │ │ ├── NetworkCommsDotNet.dll
│ │ │ │ └── NetworkCommsDotNet.pdb
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── QuickLZCompressor
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── QuickLZCompressor.dll
│ │ │ │ ├── QuickLZCompressor.pdb
│ │ │ │ └── QuickLZCompressor.XML
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── QuickLZCompressor.csproj.FileListAbsolute.txt
│ │ │ │ ├── QuickLZCompressor.csprojResolveAssemblyReference.cache
│ │ │ │ ├── QuickLZCompressor.dll
│ │ │ │ └── QuickLZCompressor.pdb
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── QuickLZCompressor.csproj
│ │ ├── SevenZipLZMACompressor
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.xml
│ │ │ │ ├── protobuf-net.dll
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ │ └── SevenZipLZMACompressor.XML
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── SevenZipLZMACompressor.csproj.FileListAbsolute.txt
│ │ │ │ ├── SevenZipLZMACompressor.csprojResolveAssemblyReference.cache
│ │ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ │ └── SevenZipLZMACompressor.pdb
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── SevenZipLZMACompressor.csproj
│ │ └── SharpZipLibCompressor
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── ICSharpCode.SharpZipLib.dll
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SharpZipLibCompressor.dll
│ │ │ ├── SharpZipLibCompressor.pdb
│ │ │ └── SharpZipLibCompressor.XML
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SharpZipLibCompressor.csproj.FileListAbsolute.txt
│ │ │ ├── SharpZipLibCompressor.csprojResolveAssemblyReference.cache
│ │ │ ├── SharpZipLibCompressor.dll
│ │ │ └── SharpZipLibCompressor.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SharpZipLibCompressor.csproj
│ ├── WP8
│ │ ├── DPSBase
│ │ │ ├── DPSBase.csproj
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ExamplesChat.WP8
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Assets
│ │ │ │ ├── AlignmentGrid.png
│ │ │ │ ├── ApplicationIcon.png
│ │ │ │ └── Tiles
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ └── IconicTileSmall.png
│ │ │ ├── ChatAppBase.cs
│ │ │ ├── ChatAppWP8.cs
│ │ │ ├── ChatMessage.cs
│ │ │ ├── ExamplesChat.WP8.csproj
│ │ │ ├── Icon@2x.png
│ │ │ ├── Icon.png
│ │ │ ├── LocalizedStrings.cs
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AppManifest.xml
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── WMAppManifest.xml
│ │ │ ├── Resources
│ │ │ │ ├── AppResources.Designer.cs
│ │ │ │ └── AppResources.resx
│ │ │ ├── SettingsPage.xaml
│ │ │ └── SettingsPage.xaml.cs
│ │ ├── NetworkCommsDotNet
│ │ │ ├── NetworkCommsDotNet.csproj
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SevenZipLZMACompressor
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SevenZipLZMACompressor.csproj
│ ├── Xamarin.Android
│ │ ├── DPSBase
│ │ │ ├── bin
│ │ │ │ └── Release
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── DPSBase.XML
│ │ │ │ └── protobuf-net.dll
│ │ │ ├── DPSBase.csproj
│ │ │ ├── obj
│ │ │ │ └── Release
│ │ │ │ ├── android
│ │ │ │ │ └── dpsbase
│ │ │ │ │ └── dpsbase
│ │ │ │ │ └── R.java
│ │ │ │ ├── __AndroidLibraryProjects__.zip
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── DPSBase.csproj.FileListAbsolute.txt
│ │ │ │ ├── DPSBase.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DPSBase.dll
│ │ │ │ ├── DPSBase.pdb
│ │ │ │ ├── library_project_imports
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── strings.xml
│ │ │ │ │ └── __res_name_case_map.txt
│ │ │ │ ├── __library_projects__
│ │ │ │ │ └── protobuf-net.dll.stamp
│ │ │ │ ├── R.cs.flag
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── Resource.Designer.cs
│ │ │ └── Values
│ │ │ └── Strings.xml
│ │ ├── ExamplesChat.Android
│ │ │ ├── Assets
│ │ │ │ └── AboutAssets.txt
│ │ │ ├── ChatAppAndroid.cs
│ │ │ ├── ChatAppBase.cs
│ │ │ ├── ChatMessage.cs
│ │ │ ├── ExamplesChat.Android.csproj
│ │ │ ├── MainActivity.cs
│ │ │ ├── obj
│ │ │ │ └── Release
│ │ │ │ ├── android
│ │ │ │ │ └── networkcommsdotnet
│ │ │ │ │ └── exampleschat
│ │ │ │ │ └── android
│ │ │ │ │ └── R.java
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── __library_projects__
│ │ │ │ │ └── protobuf-net.dll.stamp
│ │ │ │ ├── R.cs.flag
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Properties
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── Drawable
│ │ │ │ └── Icon.png
│ │ │ ├── Layout
│ │ │ │ └── Main.axml
│ │ │ ├── Resource.Designer.cs
│ │ │ └── Values
│ │ │ └── Strings.xml
│ │ ├── NetworkCommsDotNet
│ │ │ ├── NetworkCommsDotNet.csproj
│ │ │ ├── obj
│ │ │ │ └── Release
│ │ │ │ ├── android
│ │ │ │ │ └── networkcommsdotnet
│ │ │ │ │ └── networkcommsdotnet
│ │ │ │ │ └── R.java
│ │ │ │ ├── __AndroidLibraryProjects__.zip
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── library_project_imports
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── strings.xml
│ │ │ │ │ └── __res_name_case_map.txt
│ │ │ │ ├── __library_projects__
│ │ │ │ │ ├── DPSBase
│ │ │ │ │ │ └── library_project_imports
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ │ └── values
│ │ │ │ │ │ │ └── strings.xml
│ │ │ │ │ │ └── __res_name_case_map.txt
│ │ │ │ │ ├── DPSBase.dll.stamp
│ │ │ │ │ └── protobuf-net.dll.stamp
│ │ │ │ ├── NetworkCommsDotNet.csproj.FileListAbsolute.txt
│ │ │ │ ├── NetworkCommsDotNet.csprojResolveAssemblyReference.cache
│ │ │ │ ├── R.cs.flag
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── Resource.Designer.cs
│ │ │ └── Values
│ │ │ └── Strings.xml
│ │ ├── SevenZipLZMACompressor
│ │ │ ├── obj
│ │ │ │ └── Release
│ │ │ │ ├── android
│ │ │ │ │ └── sevenziplzmacompressor
│ │ │ │ │ └── sevenziplzmacompressor
│ │ │ │ │ └── R.java
│ │ │ │ ├── __AndroidLibraryProjects__.zip
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── library_project_imports
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── strings.xml
│ │ │ │ │ └── __res_name_case_map.txt
│ │ │ │ ├── R.cs.flag
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Resources
│ │ │ │ ├── AboutResources.txt
│ │ │ │ ├── Resource.Designer.cs
│ │ │ │ └── Values
│ │ │ │ └── Strings.xml
│ │ │ └── SevenZipLZMACompressor.csproj
│ │ └── SharpZipLibCompressor
│ │ ├── obj
│ │ │ └── Release
│ │ │ ├── android
│ │ │ │ └── sharpziplibcompressor
│ │ │ │ └── sharpziplibcompressor
│ │ │ │ └── R.java
│ │ │ ├── __AndroidLibraryProjects__.zip
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── library_project_imports
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── __res_name_case_map.txt
│ │ │ ├── __library_projects__
│ │ │ │ └── ICSharpCode.SharpZipLib.dll.stamp
│ │ │ ├── R.cs.flag
│ │ │ ├── res
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── Resource.Designer.cs
│ │ │ └── Values
│ │ │ └── Strings.xml
│ │ └── SharpZipLibCompressor.csproj
│ └── Xamarin.iOS
│ ├── DPSBase
│ │ ├── DPSBase.csproj
│ │ ├── obj
│ │ │ └── iPhone
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── ExamplesChat.iOS
│ │ ├── AppDelegate.cs
│ │ ├── ChatAppBase.cs
│ │ ├── ChatAppiOS.cs
│ │ ├── ChatMessage.cs
│ │ ├── ChatWindow.cs
│ │ ├── ChatWindow.designer.cs
│ │ ├── ExamplesChat.iOS.csproj
│ │ ├── Info.plist
│ │ ├── Main.cs
│ │ ├── MainStoryboard.storyboard
│ │ ├── obj
│ │ │ └── iPhone
│ │ │ └── Release
│ │ │ ├── build.force
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Icon@2x.png
│ │ │ └── Icon.png
│ │ ├── Settings.cs
│ │ └── Settings.designer.cs
│ ├── NetworkCommsDotNet
│ │ ├── NetworkCommsDotNet.csproj
│ │ ├── obj
│ │ │ └── iPhone
│ │ │ └── Release
│ │ │ ├── build.force
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── SevenZipLZMACompressor
│ ├── obj
│ │ └── iPhone
│ │ └── Release
│ │ ├── build.force
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SevenZipLZMACompressor.csproj
├── QuickLZCompressor
│ ├── bin
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── protobuf-net.dll
│ │ ├── QuickLZCompressor.dll
│ │ ├── QuickLZCompressor.pdb
│ │ └── QuickLZCompressor.XML
│ ├── Dlls
│ │ ├── quicklz150_32_1.dll
│ │ └── quicklz150_64_1.dll
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── QuickLZCompressor.csproj.FileListAbsolute.txt
│ │ ├── QuickLZCompressor.csprojResolveAssemblyReference.cache
│ │ ├── QuickLZCompressor.dll
│ │ └── QuickLZCompressor.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QuickLZCompressor.csproj
│ ├── QuickLZ.cs
│ └── V3商业版.txt
├── README.txt
├── RemoteProcedureCalls
│ ├── bin
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── NetworkCommsDotNet.dll
│ │ ├── NetworkCommsDotNet.pdb
│ │ ├── NetworkCommsDotNet.xml
│ │ ├── NLog.dll
│ │ ├── protobuf-net.dll
│ │ ├── RemoteProcedureCalls.dll
│ │ ├── RemoteProcedureCalls.pdb
│ │ ├── RemoteProcedureCalls.XML
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ └── SevenZipLZMACompressor.xml
│ ├── Client.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── RemoteProcedureCalls.csproj.FileListAbsolute.txt
│ │ ├── RemoteProcedureCalls.csprojResolveAssemblyReference.cache
│ │ ├── RemoteProcedureCalls.dll
│ │ └── RemoteProcedureCalls.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RemoteProcedureCalls.csproj
│ ├── RPCException.cs
│ ├── Server.cs
│ └── Wrappers.cs
├── SevenZipLZMACompressor
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DPSBase.dll
│ │ │ ├── DPSBase.pdb
│ │ │ ├── DPSBase.xml
│ │ │ ├── protobuf-net.dll
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ ├── SevenZipLZMACompressor.pdb
│ │ │ └── SevenZipLZMACompressor.XML
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── protobuf-net.dll
│ │ ├── SevenZipLZMACompressor.dll
│ │ ├── SevenZipLZMACompressor.pdb
│ │ └── SevenZipLZMACompressor.XML
│ ├── Common
│ │ ├── CommandLineParser.cs
│ │ ├── CRC.cs
│ │ ├── InBuffer.cs
│ │ └── OutBuffer.cs
│ ├── LZ
│ │ ├── LzBinTree.cs
│ │ ├── LzInWindow.cs
│ │ └── LzOutWindow.cs
│ ├── LzmaBase.cs
│ ├── LZMACompressor.cs
│ ├── LzmaDecoder.cs
│ ├── LzmaEncoder.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── SevenZipLZMACompressor.csproj.FileListAbsolute.txt
│ │ │ ├── SevenZipLZMACompressor.csprojResolveAssemblyReference.cache
│ │ │ ├── SevenZipLZMACompressor.dll
│ │ │ └── SevenZipLZMACompressor.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SevenZipLZMACompressor.csproj.FileListAbsolute.txt
│ │ ├── SevenZipLZMACompressor.csprojResolveAssemblyReference.cache
│ │ ├── SevenZipLZMACompressor.dll
│ │ └── SevenZipLZMACompressor.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RangeCoder
│ │ ├── RangeCoderBit.cs
│ │ ├── RangeCoderBitTree.cs
│ │ └── RangeCoder.cs
│ ├── SevenZipHelper.cs
│ ├── SevenZipLZMACompressor.csproj
│ └── V3商业版.txt
├── SharpZipLibCompressor
│ ├── bin
│ │ └── Release
│ │ ├── DPSBase.dll
│ │ ├── DPSBase.pdb
│ │ ├── DPSBase.xml
│ │ ├── ICSharpCode.SharpZipLib.dll
│ │ ├── protobuf-net.dll
│ │ ├── SharpZipLibCompressor.dll
│ │ ├── SharpZipLibCompressor.pdb
│ │ └── SharpZipLibCompressor.XML
│ ├── Dlls
│ │ └── ICSharpCode.SharpZipLib.dll
│ ├── obj
│ │ ├── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SharpZipLibCompressor.csproj.FileListAbsolute.txt
│ │ ├── SharpZipLibCompressor.csprojResolveAssemblyReference.cache
│ │ ├── SharpZipLibCompressor.dll
│ │ └── SharpZipLibCompressor.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SharpZipLibCompressor.csproj
│ ├── SharpZipLibGzipCompressor.cs
│ └── V3商业版.txt
├── SingleDllBuild
│ ├── ILMerge.exe
│ ├── SingleDll.bat
│ ├── SingleDllBuild.props
│ ├── SingleDllBuild.vcxproj
│ ├── SingleDll_Net20.bat
│ ├── SingleDll_Net35.bat
│ ├── SingleDll_Net40.bat
│ ├── SingleDll_WP8.bat
│ ├── SingleDll_Xamarin.Android.bat
│ └── SingleDll_Xamarin.iOS.bat
└── V3商业版.txt
358 directories, 2209 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论