在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 北风之神SOCKET框架(ZYSocket) 4.1 不收分

北风之神SOCKET框架(ZYSocket) 4.1 不收分

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:7.44M
  • 下载次数:3
  • 浏览次数:173
  • 发布时间:2021-11-25
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
1.使用sharpSerializerSolution 序列化,反序列化,提高了性能,(感谢麦上飞提供)注意此组件只能序列化有 无参构造函数的类。所以多使用自定义类!!像DataSet DataTable会失败,如果 你想序列化这些,请把序列化代码改回去吧。它们在 BufferFormat.cs 和 ReadBytes.cs 里面 很容易找到 2.修复了一些已知的BUG。 很多人没有分,不能下载,这次不收分
【实例截图】
【核心代码】
4744300845388030955.rar
├── 60000.jpg
├── sharpSerializerSolution
│   ├── Backup
│   │   ├── Advanced
│   │   │   ├── Binary
│   │   │   │   ├── IBinaryReader.cs
│   │   │   │   └── IBinaryWriter.cs
│   │   │   ├── BinaryPropertyDeserializer.cs
│   │   │   ├── BinaryPropertySerializer.cs
│   │   │   ├── BurstBinaryReader.cs
│   │   │   ├── BurstBinaryWriter.cs
│   │   │   ├── DefaultXmlReader.cs
│   │   │   ├── DefaultXmlWriter.cs
│   │   │   ├── Deserializing
│   │   │   │   └── IPropertyDeserializer.cs
│   │   │   ├── PropertyCache.cs
│   │   │   ├── PropertyProvider.cs
│   │   │   ├── Serializing
│   │   │   │   ├── IPropertySerializer.cs
│   │   │   │   ├── ITypeNameConverter.cs
│   │   │   │   └── PropertySerializer.cs
│   │   │   ├── SimpleValueConverter.cs
│   │   │   ├── SizeOptimizedBinaryReader.cs
│   │   │   ├── SizeOptimizedBinaryWriter.cs
│   │   │   ├── TypeNameConverter.cs
│   │   │   ├── Xml
│   │   │   │   ├── ISimpleValueConverter.cs
│   │   │   │   ├── IXmlReader.cs
│   │   │   │   └── IXmlWriter.cs
│   │   │   ├── XmlPropertyDeserializer.cs
│   │   │   └── XmlPropertySerializer.cs
│   │   ├── BinarySerializationMode.cs
│   │   ├── Core
│   │   │   ├── ArrayAnalyzer.cs
│   │   │   ├── Binary
│   │   │   │   ├── BinaryReaderTools.cs
│   │   │   │   ├── BinaryWriterTools.cs
│   │   │   │   ├── Elements.cs
│   │   │   │   └── IndexGenerator.cs
│   │   │   ├── CreatingInstanceException.cs
│   │   │   ├── DefaultInitializer.cs
│   │   │   ├── DeserializingException.cs
│   │   │   ├── Property.cs
│   │   │   ├── SharpSerializerSettings.cs
│   │   │   ├── SimpleValueParsingException.cs
│   │   │   ├── Tools.cs
│   │   │   └── Xml
│   │   │   └── Elements.cs
│   │   ├── Deserializing
│   │   │   └── ObjectFactory.cs
│   │   ├── ExcludeFromSerializationAttribute.cs
│   │   ├── key.snk
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Serializing
│   │   │   ├── PropertyFactory.cs
│   │   │   ├── PropertyTypeInfo.cs
│   │   │   ├── TypeInfoCollection.cs
│   │   │   └── TypeInfo.cs
│   │   ├── SharpSerializerBinarySettings.cs
│   │   ├── SharpSerializer.cs
│   │   ├── SharpSerializer.ico
│   │   ├── SharpSerializer.Library.Compact.csproj
│   │   └── SharpSerializerXmlSettings.cs
│   ├── HelloWorldApp
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── HelloWorldApp.exe
│   │   │   │   ├── HelloWorldApp.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   └── Polenter.SharpSerializer.xml
│   │   │   └── Release
│   │   ├── BusinessObjects
│   │   │   ├── AdvancedStruct.cs
│   │   │   ├── ComplexObject.cs
│   │   │   ├── GenericObject.cs
│   │   │   └── RootContainer.cs
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── Form1.SecondPart.cs
│   │   ├── HelloWorldApp.csproj
│   │   ├── HelloWorldApp.csproj.user
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   ├── HelloWorldApp.csproj.FileListAbsolute.txt
│   │   │   ├── HelloWorldApp.exe
│   │   │   ├── HelloWorldApp.Form1.resources
│   │   │   ├── HelloWorldApp.pdb
│   │   │   ├── HelloWorldApp.Properties.Resources.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── SharpSerializer.Library
│   │   ├── Advanced
│   │   │   ├── Binary
│   │   │   │   ├── IBinaryReader.cs
│   │   │   │   └── IBinaryWriter.cs
│   │   │   ├── BinaryPropertyDeserializer.cs
│   │   │   ├── BinaryPropertySerializer.cs
│   │   │   ├── BurstBinaryReader.cs
│   │   │   ├── BurstBinaryWriter.cs
│   │   │   ├── DefaultXmlReader.cs
│   │   │   ├── DefaultXmlWriter.cs
│   │   │   ├── Deserializing
│   │   │   │   └── IPropertyDeserializer.cs
│   │   │   ├── PropertyCache.cs
│   │   │   ├── PropertyProvider.cs
│   │   │   ├── Serializing
│   │   │   │   ├── IPropertySerializer.cs
│   │   │   │   ├── ITypeNameConverter.cs
│   │   │   │   └── PropertySerializer.cs
│   │   │   ├── SimpleValueConverter.cs
│   │   │   ├── SizeOptimizedBinaryReader.cs
│   │   │   ├── SizeOptimizedBinaryWriter.cs
│   │   │   ├── TypeNameConverter.cs
│   │   │   ├── Xml
│   │   │   │   ├── ISimpleValueConverter.cs
│   │   │   │   ├── IXmlReader.cs
│   │   │   │   └── IXmlWriter.cs
│   │   │   ├── XmlPropertyDeserializer.cs
│   │   │   └── XmlPropertySerializer.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   └── Polenter.SharpSerializer.XML
│   │   │   └── Release
│   │   ├── BinarySerializationMode.cs
│   │   ├── Core
│   │   │   ├── ArrayAnalyzer.cs
│   │   │   ├── Binary
│   │   │   │   ├── BinaryReaderTools.cs
│   │   │   │   ├── BinaryWriterTools.cs
│   │   │   │   ├── Elements.cs
│   │   │   │   └── IndexGenerator.cs
│   │   │   ├── CreatingInstanceException.cs
│   │   │   ├── DefaultInitializer.cs
│   │   │   ├── DeserializingException.cs
│   │   │   ├── Property.cs
│   │   │   ├── SharpSerializerSettings.cs
│   │   │   ├── SimpleValueParsingException.cs
│   │   │   ├── Tools.cs
│   │   │   └── Xml
│   │   │   └── Elements.cs
│   │   ├── Deserializing
│   │   │   └── ObjectFactory.cs
│   │   ├── ExcludeFromSerializationAttribute.cs
│   │   ├── key.snk
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── SharpSerializer.Library.csproj.FileListAbsolute.txt
│   │   │   └── TempPE
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Serializing
│   │   │   ├── PropertyFactory.cs
│   │   │   ├── PropertyTypeInfo.cs
│   │   │   ├── TypeInfoCollection.cs
│   │   │   └── TypeInfo.cs
│   │   ├── SharpSerializerBinarySettings.cs
│   │   ├── SharpSerializer.cs
│   │   ├── SharpSerializer.ico
│   │   ├── SharpSerializer.Library.csproj
│   │   ├── SharpSerializer.Library.csproj.user
│   │   └── SharpSerializerXmlSettings.cs
│   ├── SharpSerializer.Library.Compact
│   │   ├── Advanced
│   │   │   └── PropertyCache.cs
│   │   ├── key.snk
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Serializing
│   │   │   └── TypeInfoCollection.cs
│   │   ├── SharpSerializer.ico
│   │   └── SharpSerializer.Library.Compact.csproj
│   ├── SharpSerializer.Library.Silverlight
│   │   ├── Advanced
│   │   │   ├── Binary
│   │   │   ├── Deserializing
│   │   │   ├── Serializing
│   │   │   └── Xml
│   │   ├── Bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.Silverlight.dll
│   │   │   │   ├── Polenter.SharpSerializer.Silverlight.pdb
│   │   │   │   └── Polenter.SharpSerializer.Silverlight.xml
│   │   │   └── Release
│   │   ├── Core
│   │   │   ├── Binary
│   │   │   └── Xml
│   │   ├── Deserializing
│   │   ├── key.snk
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Polenter.SharpSerializer.Silverlight.dll
│   │   │   ├── Polenter.SharpSerializer.Silverlight.pdb
│   │   │   ├── SharpSerializer.Library.Silverlight.csproj.FileListAbsolute.txt
│   │   │   └── TempPE
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Serializing
│   │   ├── SharpSerializer.Library.Silverlight.csproj
│   │   └── SharpSerializer.Library.Silverlight.csproj.user
│   ├── SharpSerializer.sln
│   ├── SharpSerializer.suo
│   ├── SharpSerializer.Tests
│   │   ├── AuthoringTests.txt
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── HelloWorldApp.exe
│   │   │   │   ├── HelloWorldApp.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── SharpSerializer.Tests.dll
│   │   │   │   └── SharpSerializer.Tests.pdb
│   │   │   └── Release
│   │   ├── CorruptedSourceStreamTests.cs
│   │   ├── HelloWorldTests.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── SharpSerializer.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── SharpSerializer.Tests.dll
│   │   │   ├── SharpSerializer.Tests.pdb
│   │   │   └── TempPE
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SerializationTests.cs
│   │   ├── Serializing
│   │   │   └── PropertyFactoryTests.cs
│   │   ├── SharpSerializer.Tests.csproj
│   │   └── SharpSerializer.Tests.csproj.user
│   ├── UpgradeLog2.XML
│   ├── UpgradeLog3.XML
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── ZYSOCKET 4.1更新摘要.txt
├── 例1
│   ├── Test1.sln
│   ├── Test1.suo
│   ├── testClass
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── testClass.csproj.FileListAbsolute.txt
│   │   │   ├── testClass.dll
│   │   │   └── testClass.pdb
│   │   ├── PPo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testClass.csproj
│   ├── testclient
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── testclient.exe
│   │   │   │   ├── testclient.pdb
│   │   │   │   ├── testclient.vshost.exe
│   │   │   │   ├── testclient.vshost.exe.manifest
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── testclient.csproj.FileListAbsolute.txt
│   │   │   ├── testclient.exe
│   │   │   └── testclient.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testclient.csproj
│   ├── TestServer
│   │   ├── App.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── testClass.dll
│   │   │   ├── testClass.pdb
│   │   │   ├── TestServer.exe
│   │   │   ├── TestServer.exe.config
│   │   │   ├── TestServer.pdb
│   │   │   ├── TestServer.vshost.exe
│   │   │   ├── TestServer.vshost.exe.config
│   │   │   ├── TestServer.vshost.exe.manifest
│   │   │   ├── ZYSocketFrame.dll
│   │   │   ├── ZYSocketFrame.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── TestServer.csproj.FileListAbsolute.txt
│   │   │   ├── TestServer.exe
│   │   │   └── TestServer.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── TestServer.csproj
│   └── 说明.txt
├── 例1(V2)
│   ├── Test1.sln
│   ├── Test1.suo
│   ├── testClass
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   │   ├── testClass.dll
│   │   │   ├── testClass.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── testClass.csproj.FileListAbsolute.txt
│   │   │   │   ├── testClass.dll
│   │   │   │   └── testClass.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── testClass.csproj.FileListAbsolute.txt
│   │   │   ├── testClass.dll
│   │   │   └── testClass.pdb
│   │   ├── PPo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testClass.csproj
│   ├── testclient
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── testclient.exe
│   │   │   │   ├── testclient.pdb
│   │   │   │   ├── testclient.vshost.exe
│   │   │   │   ├── testclient.vshost.exe.manifest
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   │   ├── testClass.dll
│   │   │   ├── testClass.pdb
│   │   │   ├── testclient.exe
│   │   │   ├── testclient.pdb
│   │   │   ├── testclient.vshost.exe
│   │   │   ├── testclient.vshost.exe.manifest
│   │   │   ├── ZYSocketClientA.dll
│   │   │   ├── ZYSocketClientA.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── testclient.csproj.FileListAbsolute.txt
│   │   │   │   ├── testclient.exe
│   │   │   │   └── testclient.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── testclient.csproj.FileListAbsolute.txt
│   │   │   ├── testclient.exe
│   │   │   └── testclient.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testclient.csproj
│   ├── TestServer
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── TestServer.exe
│   │   │   │   ├── TestServer.exe.config
│   │   │   │   ├── TestServer.pdb
│   │   │   │   ├── TestServer.vshost.exe
│   │   │   │   ├── TestServer.vshost.exe.config
│   │   │   │   ├── TestServer.vshost.exe.manifest
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   │   ├── testClass.dll
│   │   │   ├── testClass.pdb
│   │   │   ├── TestServer.exe
│   │   │   ├── TestServer.exe.config
│   │   │   ├── TestServer.pdb
│   │   │   ├── TestServer.vshost.exe
│   │   │   ├── TestServer.vshost.exe.config
│   │   │   ├── TestServer.vshost.exe.manifest
│   │   │   ├── ZYSocketFrame.dll
│   │   │   ├── ZYSocketFrame.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── TestServer.csproj.FileListAbsolute.txt
│   │   │   │   ├── TestServer.exe
│   │   │   │   └── TestServer.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── TestServer.csproj.FileListAbsolute.txt
│   │   │   ├── TestServer.exe
│   │   │   └── TestServer.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── TestServer.csproj
│   └── 说明.txt
├── 例1 - ZYNetBufferReadStream
│   ├── Test1.sln
│   ├── Test1.suo
│   ├── testClass
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── testClass.csproj.FileListAbsolute.txt
│   │   │   ├── testClass.dll
│   │   │   └── testClass.pdb
│   │   ├── PPo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testClass.csproj
│   ├── testclient
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── testClass.dll
│   │   │   │   ├── testClass.pdb
│   │   │   │   ├── testclient.exe
│   │   │   │   ├── testclient.pdb
│   │   │   │   ├── testclient.vshost.exe
│   │   │   │   ├── testclient.vshost.exe.manifest
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── testclient.csproj.FileListAbsolute.txt
│   │   │   ├── testclient.exe
│   │   │   └── testclient.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── testclient.csproj
│   ├── TestServer
│   │   ├── App.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── testClass.dll
│   │   │   ├── testClass.pdb
│   │   │   ├── TestServer.exe
│   │   │   ├── TestServer.exe.config
│   │   │   ├── TestServer.pdb
│   │   │   ├── TestServer.vshost.exe
│   │   │   ├── TestServer.vshost.exe.config
│   │   │   ├── TestServer.vshost.exe.manifest
│   │   │   ├── ZYSocketFrame.dll
│   │   │   ├── ZYSocketFrame.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── TestServer.csproj.FileListAbsolute.txt
│   │   │   ├── TestServer.exe
│   │   │   └── TestServer.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── TestServer.csproj
│   └── 说明.txt
├── 例2
│   ├── BuffLibrary
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── BuffLibrary.dll
│   │   │   ├── BuffLibrary.pdb
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── BuffLibrary.csproj
│   │   ├── Class1.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── BuffLibrary.csproj.FileListAbsolute.txt
│   │   │   ├── BuffLibrary.dll
│   │   │   ├── BuffLibrary.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   └── TempPE
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Client
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── BuffLibrary.dll
│   │   │   ├── BuffLibrary.pdb
│   │   │   ├── Client.exe
│   │   │   ├── Client.pdb
│   │   │   ├── Client.vshost.exe
│   │   │   ├── Client.vshost.exe.manifest
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── ZYSocketClientA.dll
│   │   │   ├── ZYSocketClientA.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── Client.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── LogOn.cs
│   │   ├── LogOn.Designer.cs
│   │   ├── LogOn.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── Client.csproj.FileListAbsolute.txt
│   │   │   ├── Client.exe
│   │   │   ├── Client.Form1.resources
│   │   │   ├── Client.LogOn.resources
│   │   │   ├── Client.pdb
│   │   │   ├── Client.Properties.Resources.resources
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── SocketManager.cs
│   ├── Server
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── BuffLibrary.dll
│   │   │   │   ├── BuffLibrary.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── Server.exe
│   │   │   │   ├── Server.exe.config
│   │   │   │   ├── Server.pdb
│   │   │   │   ├── Server.vshost.exe
│   │   │   │   ├── Server.vshost.exe.config
│   │   │   │   ├── Server.vshost.exe.manifest
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── Server.csproj.FileListAbsolute.txt
│   │   │   ├── Server.exe
│   │   │   ├── Server.pdb
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Server.csproj
│   │   ├── Server.csproj.user
│   │   └── User
│   │   ├── IUserData.cs
│   │   ├── UserData.cs
│   │   ├── UserInfo.cs
│   │   └── UserManger.cs
│   ├── test2.sln
│   ├── test2.suo
│   └── 说明.txt
├── 例3 - 例2的加密版
│   ├── BuffLibrary
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── BuffLibrary.dll
│   │   │   │   ├── BuffLibrary.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── BuffLibrary.csproj
│   │   ├── Class1.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── BuffLibrary.csproj.FileListAbsolute.txt
│   │   │   ├── BuffLibrary.dll
│   │   │   ├── BuffLibrary.pdb
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   ├── Client
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── BuffLibrary.dll
│   │   │   │   ├── BuffLibrary.pdb
│   │   │   │   ├── Client.exe
│   │   │   │   ├── Client.pdb
│   │   │   │   ├── Client.vshost.exe
│   │   │   │   ├── Client.vshost.exe.manifest
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── Client.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── LogOn.cs
│   │   ├── LogOn.Designer.cs
│   │   ├── LogOn.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── Client.csproj.FileListAbsolute.txt
│   │   │   ├── Client.exe
│   │   │   ├── Client.Form1.resources
│   │   │   ├── Client.LogOn.resources
│   │   │   ├── Client.pdb
│   │   │   ├── Client.Properties.Resources.resources
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── SocketManager.cs
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   ├── Server
│   │   ├── App.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── BuffLibrary.dll
│   │   │   │   ├── BuffLibrary.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── Server.exe
│   │   │   │   ├── Server.exe.config
│   │   │   │   ├── Server.pdb
│   │   │   │   ├── Server.vshost.exe
│   │   │   │   ├── Server.vshost.exe.config
│   │   │   │   ├── Server.vshost.exe.manifest
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── Server.csproj.FileListAbsolute.txt
│   │   │   ├── Server.exe
│   │   │   ├── Server.pdb
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Server.csproj
│   │   ├── Server.csproj.user
│   │   └── User
│   │   ├── IUserData.cs
│   │   ├── UserData.cs
│   │   ├── UserInfo.cs
│   │   └── UserManger.cs
│   ├── test2.sln
│   ├── test2.suo
│   └── 说明.txt
├── 例4(FileIO)
│   └── FileManager
│   ├── App.ico
│   ├── CDROOM.jpg
│   ├── Client
│   │   ├── app.config
│   │   ├── App.ico
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Client.exe
│   │   │   │   ├── Client.exe.config
│   │   │   │   ├── Client.pdb
│   │   │   │   ├── Client.vshost.exe
│   │   │   │   ├── Client.vshost.exe.config
│   │   │   │   ├── Client.vshost.exe.manifest
│   │   │   │   ├── PackHandler.dll
│   │   │   │   ├── PackHandler.pdb
│   │   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   │   ├── ZYSocketClientB.dll
│   │   │   │   ├── ZYSocketClientB.pdb
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   ├── Client.csproj
│   │   ├── DownFile.cs
│   │   ├── DownFile.Designer.cs
│   │   ├── DownFile.resx
│   │   ├── LogOn.cs
│   │   ├── LogOn.Designer.cs
│   │   ├── LogOn.resx
│   │   ├── NewDir.cs
│   │   ├── NewDir.Designer.cs
│   │   ├── NewDir.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── Client.csproj.FileListAbsolute.txt
│   │   │   ├── Client.DownFile.resources
│   │   │   ├── Client.exe
│   │   │   ├── Client.LogOn.resources
│   │   │   ├── Client.NewDir.resources
│   │   │   ├── Client.pdb
│   │   │   ├── Client.Properties.Resources.resources
│   │   │   ├── Client.UpFiles.resources
│   │   │   ├── Client.WinMain.resources
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource-ResGen.read.1.tlog
│   │   │   ├── GenerateResource-ResGen.write.1.tlog
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── SocketManager.cs
│   │   ├── SystemICO.cs
│   │   ├── UpFiles.cs
│   │   ├── UpFiles.Designer.cs
│   │   ├── UpFiles.resx
│   │   ├── WinMain.cs
│   │   ├── WinMain.Designer.cs
│   │   └── WinMain.resx
│   ├── Dir.jpg
│   ├── Disk.jpg
│   ├── Dll.jpg
│   ├── exe.jpg
│   ├── File.jpg
│   ├── FileManager
│   │   ├── app.config
│   │   ├── App.ico
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── FileManager.exe
│   │   │   ├── FileManager.exe.config
│   │   │   ├── FileManager.pdb
│   │   │   ├── FileManager.vshost.exe
│   │   │   ├── FileManager.vshost.exe.config
│   │   │   ├── FileManager.vshost.exe.manifest
│   │   │   ├── PackHandler.dll
│   │   │   ├── PackHandler.pdb
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── ZYSocketFrame.dll
│   │   │   ├── ZYSocketFrame.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── FileManager.csproj
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── FileManager.csproj.FileListAbsolute.txt
│   │   │   ├── FileManager.exe
│   │   │   ├── FileManager.pdb
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── UserManager.cs
│   ├── FileManager.sln
│   ├── FileManager.suo
│   └── PackHandler
│   ├── bin
│   │   ├── Debug
│   │   │   ├── PackHandler.dll
│   │   │   ├── PackHandler.pdb
│   │   │   ├── Polenter.SharpSerializer.dll
│   │   │   ├── Polenter.SharpSerializer.pdb
│   │   │   ├── Polenter.SharpSerializer.xml
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   └── Release
│   ├── DelFile.cs
│   ├── Dir.cs
│   ├── Down.cs
│   ├── GetDisk.cs
│   ├── LogOn.cs
│   ├── LogOnRes.cs
│   ├── MoveFileSystem.cs
│   ├── NewDir.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── PackHandler.csproj.FileListAbsolute.txt
│   │   ├── PackHandler.dll
│   │   ├── PackHandler.pdb
│   │   └── TempPE
│   ├── PackHandler.csproj
│   ├── PackType.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Run.cs
│   ├── UpClose.cs
│   └── UpFile.cs
├── 加解密实例测试
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── test1.exe
│   │   ├── test1.exe.config
│   │   ├── test1.pdb
│   │   ├── test1.vshost.exe
│   │   ├── test1.vshost.exe.config
│   │   ├── test1.vshost.exe.manifest
│   │   ├── ZYSocketShare.dll
│   │   └── ZYSocketShare.pdb
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   ├── test1.csproj.FileListAbsolute.txt
│   │   ├── test1.exe
│   │   └── test1.pdb
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── test1.csproj
│   ├── test1.sln
│   ├── test1.suo
│   └── 说明.txt
├── 北风之神SOCKET框架(ZYSocket)
│   ├── ZYSocketClientA
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   ├── ZYSocketClientA.pdb
│   │   │   │   └── ZYSocketClientA.vshost.exe
│   │   │   └── Release
│   │   │   ├── ZYSocketClientA.dll
│   │   │   └── ZYSocketClientA.pdb
│   │   ├── ClientA
│   │   │   └── SocketClient.cs
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── ZYSocketClientA.csproj.FileListAbsolute.txt
│   │   │   │   ├── ZYSocketClientA.dll
│   │   │   │   └── ZYSocketClientA.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── ZYSocketClientA.csproj.FileListAbsolute.txt
│   │   │   ├── ZYSocketClientA.dll
│   │   │   └── ZYSocketClientA.pdb
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ZYSocketClientA.csproj
│   ├── ZYSocketClientB
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ZYSocketClientB.dll
│   │   │   │   └── ZYSocketClientB.pdb
│   │   │   └── Release
│   │   │   ├── ZYSocketClientB.dll
│   │   │   └── ZYSocketClientB.pdb
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── ZYSocketClientB.csproj.FileListAbsolute.txt
│   │   │   │   ├── ZYSocketClientB.dll
│   │   │   │   └── ZYSocketClientB.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── ZYSocketClientB.csproj.FileListAbsolute.txt
│   │   │   ├── ZYSocketClientB.dll
│   │   │   └── ZYSocketClientB.pdb
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SocketClient.cs
│   │   └── ZYSocketClientB.csproj
│   ├── ZYSocketFrame
│   │   ├── app.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   ├── ZYSocketFrame.dll.config
│   │   │   │   ├── ZYSocketFrame.pdb
│   │   │   │   ├── ZYSocketFrame.vshost.exe
│   │   │   │   ├── ZYSocketFrame.vshost.exe.config
│   │   │   │   ├── ZYSocketFrame.vshost.exe.manifest
│   │   │   │   ├── ZYSocketShare.dll
│   │   │   │   └── ZYSocketShare.pdb
│   │   │   └── Release
│   │   │   ├── ZYSocketFrame.dll
│   │   │   ├── ZYSocketFrame.dll.config
│   │   │   ├── ZYSocketFrame.pdb
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   ├── obj
│   │   │   └── x86
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── TempPE
│   │   │   │   ├── ZYSocketFrame.csproj.FileListAbsolute.txt
│   │   │   │   ├── ZYSocketFrame.dll
│   │   │   │   └── ZYSocketFrame.pdb
│   │   │   └── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TempPE
│   │   │   ├── ZYSocketFrame.csproj.FileListAbsolute.txt
│   │   │   ├── ZYSocketFrame.dll
│   │   │   └── ZYSocketFrame.pdb
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Server
│   │   │   ├── BufferManager.cs
│   │   │   ├── SocketAsyncEventArgsPool.cs
│   │   │   ├── ZYSocketSuper.cs
│   │   │   └── ZYSocketSuperForWin8.cs
│   │   └── ZYSocketFrame.csproj
│   ├── ZYSocketFrame.sln
│   ├── ZYSocketFrame.suo
│   └── ZYSocketShare
│   ├── app.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── ZYSocketShare.dll
│   │   │   ├── ZYSocketShare.dll.config
│   │   │   └── ZYSocketShare.pdb
│   │   └── Release
│   │   ├── ZYSocketShare.dll
│   │   ├── ZYSocketShare.dll.config
│   │   └── ZYSocketShare.pdb
│   ├── Compression
│   │   └── Deflate.cs
│   ├── obj
│   │   └── x86
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── ZYSocketShare.csproj.FileListAbsolute.txt
│   │   │   ├── ZYSocketShare.dll
│   │   │   └── ZYSocketShare.pdb
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   ├── ZYSocketShare.csproj.FileListAbsolute.txt
│   │   ├── ZYSocketShare.dll
│   │   └── ZYSocketShare.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Security
│   │   ├── AES.cs
│   │   └── DES.cs
│   ├── share
│   │   ├── BufferFormat.cs
│   │   ├── BufferFormatV2.cs
│   │   ├── BuffList.cs
│   │   ├── FormatClassAttibutes.cs
│   │   ├── RConfig.cs
│   │   ├── ReadBytes.cs
│   │   ├── ReadBytesV2.cs
│   │   ├── ZYNetBufferReadStream.cs
│   │   └── ZYNetBufferReadStreamV2.cs
│   ├── ZYSocketShare.csproj
│   └── ZYSocketShare.csproj.user
├── 北风之神SOCKET框架(ZYSocket)DLL
│   ├── Polenter.SharpSerializer.dll
│   ├── Polenter.SharpSerializer.pdb
│   ├── Polenter.SharpSerializer.Silverlight.dll
│   ├── Polenter.SharpSerializer.Silverlight.pdb
│   ├── Polenter.SharpSerializer.Silverlight.xml
│   ├── Polenter.SharpSerializer.XML
│   ├── ZYSocketClientA.dll
│   ├── ZYSocketClientA.pdb
│   ├── ZYSocketClientB.dll
│   ├── ZYSocketClientB.pdb
│   ├── ZYSocketFrame.dll
│   ├── ZYSocketFrame.dll.config
│   ├── ZYSocketFrame.pdb
│   ├── ZYSocketShare.dll
│   ├── ZYSocketShare.dll.config
│   └── ZYSocketShare.pdb
└── 连接测试工具
├── ConnTest
│   ├── ConnTest
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ConnTest.exe
│   │   │   ├── ConnTest.pdb
│   │   │   ├── ConnTest.suo
│   │   │   ├── ConnTest.vshost.exe
│   │   │   ├── ConnTest.vshost.exe.manifest
│   │   │   ├── ZYSocketClientA.dll
│   │   │   └── ZYSocketShare.dll
│   │   ├── Client.cs
│   │   ├── ConnTest.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── ConnTest.csproj.FileListAbsolute.txt
│   │   │   ├── ConnTest.exe
│   │   │   ├── ConnTest.Form1.resources
│   │   │   ├── ConnTest.pdb
│   │   │   ├── ConnTest.Properties.Resources.resources
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── ConnTest.sln
│   └── ConnTest.suo
└── 说明.txt

312 directories, 866 files

标签:

实例下载地址

北风之神SOCKET框架(ZYSocket) 4.1 不收分

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警