实例介绍
【实例简介】C# 六个小游戏源码,俄罗斯方块,连连看,拼图,飞机大战,贪吃蛇,五子棋
【实例截图】
【核心代码】
.
├── C# 六个小游戏源码,俄罗斯方块,连连看,拼图,飞机大战,贪吃蛇,五子棋.zip
└── gam
├── 五子棋
│ └── Chess
│ ├── Chess
│ │ ├── Chess.csproj
│ │ ├── Chess.idc
│ │ ├── Chess.v12.suo
│ │ ├── Chessman.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── black.png
│ │ │ └── white.png
│ │ ├── frmDubug.Designer.cs
│ │ ├── frmDubug.cs
│ │ ├── frmDubug.resx
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.cs
│ │ └── frmMain.resx
│ ├── Chess.sln
│ ├── Chess.v12.suo
│ ├── GameComponent
│ │ ├── ChessmenNumChangeEventArgs.cs
│ │ ├── GameBoard.AI.cs
│ │ ├── GameBoard.cs
│ │ ├── GameComponent.csproj
│ │ ├── GameEndEventArgs.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ └── Resources
│ │ ├── black.png
│ │ └── white.png
│ ├── chessman.psd
│ └── 五子棋核心算法.docx
├── 贪吃蛇
│ └── tan_chi_she--C--main
│ ├── ConsoleApp1
│ │ ├── ConsoleApp1.csproj
│ │ ├── Program.cs
│ │ ├── obj
│ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json
│ │ │ ├── ConsoleApp1.csproj.nuget.g.props
│ │ │ ├── ConsoleApp1.csproj.nuget.g.targets
│ │ │ ├── Debug
│ │ │ │ └── net6.0
│ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs
│ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache
│ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ │ ├── ConsoleApp1.GlobalUsings.g.cs
│ │ │ │ ├── ConsoleApp1.assets.cache
│ │ │ │ └── ConsoleApp1.csproj.AssemblyReference.cache
│ │ │ ├── project.assets.json
│ │ │ └── project.nuget.cache
│ │ └── 贪吃蛇.cs
│ ├── ConsoleApp1.sln
│ ├── README.txt
│ └── 贪吃蛇
│ ├── BeginOrEndScene.cs
│ ├── BeginScene.cs
│ ├── EndScene.cs
│ ├── Food.cs
│ ├── Game.cs
│ ├── GameObject.cs
│ ├── GameScene.cs
│ ├── IDraw.cs
│ ├── ISceneUpdate.cs
│ ├── Map.cs
│ ├── Position.cs
│ ├── Program.cs
│ ├── Snake.cs
│ ├── SnakeBody.cs
│ ├── Wall.cs
│ ├── bin
│ │ └── Debug
│ │ └── net6.0
│ │ ├── 贪吃蛇.deps.json
│ │ ├── 贪吃蛇.dll
│ │ ├── 贪吃蛇.exe
│ │ ├── 贪吃蛇.pdb
│ │ └── 贪吃蛇.runtimeconfig.json
│ ├── obj
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── _IsIncrementalBuild
│ │ │ ├── apphost.exe
│ │ │ ├── ref
│ │ │ │ └── 贪吃蛇.dll
│ │ │ ├── refint
│ │ │ │ └── 贪吃蛇.dll
│ │ │ ├── 贪吃蛇.AssemblyInfo.cs
│ │ │ ├── 贪吃蛇.AssemblyInfoInputs.cache
│ │ │ ├── 贪吃蛇.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── 贪吃蛇.GlobalUsings.g.cs
│ │ │ ├── 贪吃蛇.assets.cache
│ │ │ ├── 贪吃蛇.csproj.AssemblyReference.cache
│ │ │ ├── 贪吃蛇.csproj.BuildWithSkipAnalyzers
│ │ │ ├── 贪吃蛇.csproj.CoreCompileInputs.cache
│ │ │ ├── 贪吃蛇.csproj.FileListAbsolute.txt
│ │ │ ├── 贪吃蛇.dll
│ │ │ ├── 贪吃蛇.genruntimeconfig.cache
│ │ │ └── 贪吃蛇.pdb
│ │ ├── project.assets.json
│ │ ├── project.nuget.cache
│ │ ├── 贪吃蛇.csproj.nuget.dgspec.json
│ │ ├── 贪吃蛇.csproj.nuget.g.props
│ │ └── 贪吃蛇.csproj.nuget.g.targets
│ └── 贪吃蛇.csproj
├── 连连看
│ └── lianliankan
│ ├── 连连看
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Microsoft.DirectX.DirectSound.dll
│ │ │ ├── Microsoft.DirectX.DirectSound.xml
│ │ │ ├── Microsoft.DirectX.dll
│ │ │ ├── Microsoft.DirectX.xml
│ │ │ ├── maxScore.txt
│ │ │ ├── 连连看.exe
│ │ │ ├── 连连看.exe.config
│ │ │ └── 连连看.pdb
│ │ ├── images
│ │ │ ├── 西瓜.jpeg
│ │ │ ├── 背景.jpg
│ │ │ ├── 山竹.png
│ │ │ ├── 杨梅.png
│ │ │ ├── 柠檬.png
│ │ │ ├── 樱桃.png
│ │ │ ├── 橄榄.png
│ │ │ ├── 橙子.png
│ │ │ ├── 番茄.png
│ │ │ ├── 石榴.png
│ │ │ ├── 蓝莓.png
│ │ │ ├── 西瓜.png
│ │ │ ├── 大柚子.png
│ │ │ ├── 水蜜桃.png
│ │ │ └── 猕猴桃.png
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── 连连看.Form1.resources
│ │ │ ├── 连连看.Properties.Resources.resources
│ │ │ ├── 连连看.csproj.CopyComplete
│ │ │ ├── 连连看.csproj.CoreCompileInputs.cache
│ │ │ ├── 连连看.csproj.FileListAbsolute.txt
│ │ │ ├── 连连看.csproj.GenerateResource.cache
│ │ │ ├── 连连看.csprojAssemblyReference.cache
│ │ │ ├── 连连看.csprojResolveAssemblyReference.cache
│ │ │ ├── 连连看.exe
│ │ │ └── 连连看.pdb
│ │ ├── videoes
│ │ │ ├── 消除音效.wav
│ │ │ ├── 背景音效.wav
│ │ │ ├── 通关音效.wav
│ │ │ └── 消除失败音效.wav
│ │ └── 连连看.csproj
│ ├── 连连看.sln
│ ├── 遇到的问题及解决方法.docx
│ └── 遇到的问题及解决方法.pdf
├── 拼图游戏
│ └── Puzzle-Game
│ ├── App.config
│ ├── ClassDiagram1.cd
│ ├── CutPicture.cs
│ ├── Form_Main.Designer.cs
│ ├── Form_Main.cs
│ ├── Form_Main.resx
│ ├── Form_Original.Designer.cs
│ ├── Form_Original.cs
│ ├── Form_Original.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── README.md
│ ├── Resources
│ │ ├── 0.jpg
│ │ ├── 1.JPG
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ └── 4.JPG
│ ├── bin
│ │ └── Debug
│ │ ├── Resources
│ │ │ ├── 0.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ └── 4.jpg
│ │ ├── 拼图游戏.exe
│ │ ├── 拼图游戏.exe.config
│ │ ├── 拼图游戏.pdb
│ │ ├── 拼图游戏.vshost.exe
│ │ ├── 拼图游戏.vshost.exe.config
│ │ └── 拼图游戏.vshost.exe.manifest
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── 拼图游戏.Form_Main.resources
│ │ ├── 拼图游戏.Form_Original.resources
│ │ ├── 拼图游戏.Properties.Resources.resources
│ │ ├── 拼图游戏.csproj.FileListAbsolute.txt
│ │ ├── 拼图游戏.csproj.GenerateResource.Cache
│ │ ├── 拼图游戏.csprojResolveAssemblyReference.cache
│ │ ├── 拼图游戏.exe
│ │ └── 拼图游戏.pdb
│ ├── 拼图游戏.csproj
│ ├── 拼图游戏.sln
│ └── 拼图游戏.v11.suo
├── 拼图游戏2
│ └── Csharp-pintu
│ ├── c.ico
│ ├── 拼图
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resource.Designer.cs
│ │ │ ├── Resource.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resource1.Designer.cs
│ │ ├── Resource1.resx
│ │ ├── Resources
│ │ │ ├── (1).jpg
│ │ │ ├── (10).jpg
│ │ │ ├── (11).jpg
│ │ │ ├── (12).jpg
│ │ │ ├── (13).jpg
│ │ │ ├── (14).jpg
│ │ │ ├── (15).jpg
│ │ │ ├── (16).jpg
│ │ │ ├── (2).jpg
│ │ │ ├── (3).jpg
│ │ │ ├── (4).jpg
│ │ │ ├── (5).jpg
│ │ │ ├── (6).jpg
│ │ │ ├── (7).jpg
│ │ │ ├── (8).jpg
│ │ │ └── (9).jpg
│ │ ├── c.ico
│ │ └── 拼图.csproj
│ └── 拼图.sln
├── 俄罗斯方块
│ └── ClassicGame
│ ├── ClassicGame
│ │ ├── App.config
│ │ ├── ClassicGame.csproj
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── GameEngine.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TetrisEngine.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ClassicGame.exe
│ │ │ ├── ClassicGame.exe.config
│ │ │ └── ClassicGame.pdb
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── ClassicGame.Form1.resources
│ │ │ ├── ClassicGame.Properties.Resources.resources
│ │ │ ├── ClassicGame.csproj.AssemblyReference.cache
│ │ │ ├── ClassicGame.csproj.CoreCompileInputs.cache
│ │ │ ├── ClassicGame.csproj.FileListAbsolute.txt
│ │ │ ├── ClassicGame.csproj.GenerateResource.cache
│ │ │ ├── ClassicGame.exe
│ │ │ ├── ClassicGame.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── screenshots
│ │ └── one.png
│ └── ClassicGame.sln
└── 飞机大战小游戏
└── aircraft_wars
├── PlaneGame
│ ├── Boom.cs
│ ├── Bullet.cs
│ ├── DataUtil.cs
│ ├── Enemy.cs
│ ├── GameObject.cs
│ ├── Hero.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── PlanGame.csproj
│ ├── PlanGame.csproj.user
│ ├── PlanGame.sln
│ ├── PlanGame_1_TemporaryKey.pfx
│ ├── PlanGame_TemporaryKey.pfx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── New Atlas.png
│ │ ├── achievement.mp3
│ │ ├── background.png
│ │ ├── bg.png
│ │ ├── big_spaceship_flying.mp3
│ │ ├── bullet.mp3
│ │ ├── bullet.png
│ │ ├── bullet.wav
│ │ ├── bullet1.png
│ │ ├── bullet2.png
│ │ ├── bullet3.png
│ │ ├── bullet51.png
│ │ ├── button.mp3
│ │ ├── button_nor.png
│ │ ├── button_p.png
│ │ ├── enemy0.png
│ │ ├── enemy0_down.mp3
│ │ ├── enemy0_down.wav
│ │ ├── enemy0_down1.png
│ │ ├── enemy0_down2.png
│ │ ├── enemy0_down3.png
│ │ ├── enemy0_down4.png
│ │ ├── enemy1.png
│ │ ├── enemy1_down.mp3
│ │ ├── enemy1_down.wav
│ │ ├── enemy1_down1.png
│ │ ├── enemy1_down2.png
│ │ ├── enemy1_down3.png
│ │ ├── enemy1_down4.png
│ │ ├── enemy1_hit.png
│ │ ├── enemy2.png
│ │ ├── enemy2_down.mp3
│ │ ├── enemy2_down.wav
│ │ ├── enemy2_down1.png
│ │ ├── enemy2_down2.png
│ │ ├── enemy2_down3.png
│ │ ├── enemy2_down4.png
│ │ ├── enemy2_down5.png
│ │ ├── enemy2_down6.png
│ │ ├── enemy2_hit.png
│ │ ├── enemy2_n2.png
│ │ ├── game_music.mp3
│ │ ├── game_music.wav
│ │ ├── game_over.mp3
│ │ ├── game_over.wav
│ │ ├── game_pause_nor.png
│ │ ├── game_pause_pressed.png
│ │ ├── game_resume_pressed.png
│ │ ├── gameover.png
│ │ ├── get_bomb.wav
│ │ ├── get_double_laser.mp3
│ │ ├── get_double_laser.wav
│ │ ├── hero1.png
│ │ ├── hero2.png
│ │ ├── hero3.png
│ │ ├── hero_blowup_n1.png
│ │ ├── hero_blowup_n2.png
│ │ ├── hero_blowup_n3.png
│ │ ├── hero_blowup_n4.png
│ │ ├── icon72x72.png
│ │ ├── loading.png
│ │ ├── name.png
│ │ ├── out_porp.mp3
│ │ ├── out_porp.wav
│ │ ├── progress.png
│ │ ├── prop_type_0.png
│ │ ├── prop_type_1.png
│ │ ├── use_bomb.mp3
│ │ └── use_bomb.wav
│ ├── ResultForm.Designer.cs
│ ├── ResultForm.cs
│ ├── ResultForm.resx
│ ├── Tools.cs
│ ├── User.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── PlaneGame.exe
│ │ │ ├── PlaneGame.pdb
│ │ │ └── game.dat
│ │ └── Release
│ ├── favicon.ico
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── PlanGame.csproj.AssemblyReference.cache
│ │ ├── PlanGame.csproj.CoreCompileInputs.cache
│ │ ├── PlanGame.csproj.FileListAbsolute.txt
│ │ ├── PlanGame.csproj.GenerateResource.cache
│ │ ├── PlanGame.csprojAssemblyReference.cache
│ │ ├── PlaneGame.MainForm.resources
│ │ ├── PlaneGame.Properties.Resources.resources
│ │ ├── PlaneGame.ResultForm.resources
│ │ ├── PlaneGame.exe
│ │ ├── PlaneGame.pdb
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── whuc.PlaneGame.MainForm.resources
│ │ ├── whuc.PlaneGame.ResultForm.resources
│ │ ├── whuc.PlaneGame.csproj.CoreCompileInputs.cache
│ │ ├── whuc.PlaneGame.csproj.FileListAbsolute.txt
│ │ └── whuc.PlaneGame.csprojAssemblyReference.cache
│ └── packages
│ ├── Newtonsoft.Json.12.0.3
│ │ ├── LICENSE.md
│ │ ├── Newtonsoft.Json.12.0.3.nupkg
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── portable-net40 sl5 win8 wp8 wpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── portable-net45 win8 wp8 wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── packageIcon.png
│ ├── SuperSocket.ClientEngine.Core.0.10.0
│ │ ├── SuperSocket.ClientEngine.Core.0.10.0.nupkg
│ │ └── lib
│ │ ├── net20
│ │ │ └── SuperSocket.ClientEngine.dll
│ │ ├── net35-client
│ │ │ └── SuperSocket.ClientEngine.dll
│ │ ├── net40-client
│ │ │ └── SuperSocket.ClientEngine.dll
│ │ ├── net45
│ │ │ └── SuperSocket.ClientEngine.dll
│ │ ├── netstandard1.3
│ │ │ └── SuperSocket.ClientEngine.dll
│ │ └── sl50
│ │ └── SuperSocket.ClientEngine.dll
│ ├── System.Collections.Specialized.4.3.0
│ │ ├── System.Collections.Specialized.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Collections.Specialized.dll
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Collections.Specialized.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ └── System.Collections.Specialized.dll
│ │ ├── netstandard1.3
│ │ │ ├── System.Collections.Specialized.dll
│ │ │ ├── System.Collections.Specialized.xml
│ │ │ ├── de
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── es
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── fr
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── it
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── ja
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── ko
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── ru
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Collections.Specialized.xml
│ │ │ └── zh-hant
│ │ │ └── System.Collections.Specialized.xml
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.IO.4.3.0
│ │ ├── System.IO.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net462
│ │ │ │ └── System.IO.dll
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net462
│ │ │ └── System.IO.dll
│ │ ├── netcore50
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── de
│ │ │ │ └── System.IO.xml
│ │ │ ├── es
│ │ │ │ └── System.IO.xml
│ │ │ ├── fr
│ │ │ │ └── System.IO.xml
│ │ │ ├── it
│ │ │ │ └── System.IO.xml
│ │ │ ├── ja
│ │ │ │ └── System.IO.xml
│ │ │ ├── ko
│ │ │ │ └── System.IO.xml
│ │ │ ├── ru
│ │ │ │ └── System.IO.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.IO.xml
│ │ │ └── zh-hant
│ │ │ └── System.IO.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── de
│ │ │ │ └── System.IO.xml
│ │ │ ├── es
│ │ │ │ └── System.IO.xml
│ │ │ ├── fr
│ │ │ │ └── System.IO.xml
│ │ │ ├── it
│ │ │ │ └── System.IO.xml
│ │ │ ├── ja
│ │ │ │ └── System.IO.xml
│ │ │ ├── ko
│ │ │ │ └── System.IO.xml
│ │ │ ├── ru
│ │ │ │ └── System.IO.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.IO.xml
│ │ │ └── zh-hant
│ │ │ └── System.IO.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── de
│ │ │ │ └── System.IO.xml
│ │ │ ├── es
│ │ │ │ └── System.IO.xml
│ │ │ ├── fr
│ │ │ │ └── System.IO.xml
│ │ │ ├── it
│ │ │ │ └── System.IO.xml
│ │ │ ├── ja
│ │ │ │ └── System.IO.xml
│ │ │ ├── ko
│ │ │ │ └── System.IO.xml
│ │ │ ├── ru
│ │ │ │ └── System.IO.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.IO.xml
│ │ │ └── zh-hant
│ │ │ └── System.IO.xml
│ │ ├── netstandard1.5
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── de
│ │ │ │ └── System.IO.xml
│ │ │ ├── es
│ │ │ │ └── System.IO.xml
│ │ │ ├── fr
│ │ │ │ └── System.IO.xml
│ │ │ ├── it
│ │ │ │ └── System.IO.xml
│ │ │ ├── ja
│ │ │ │ └── System.IO.xml
│ │ │ ├── ko
│ │ │ │ └── System.IO.xml
│ │ │ ├── ru
│ │ │ │ └── System.IO.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.IO.xml
│ │ │ └── zh-hant
│ │ │ └── System.IO.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Linq.4.3.0
│ │ ├── System.Linq.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net463
│ │ │ │ └── System.Linq.dll
│ │ │ ├── netcore50
│ │ │ │ └── System.Linq.dll
│ │ │ ├── netstandard1.6
│ │ │ │ └── System.Linq.dll
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net463
│ │ │ └── System.Linq.dll
│ │ ├── netcore50
│ │ │ ├── System.Linq.dll
│ │ │ ├── System.Linq.xml
│ │ │ ├── de
│ │ │ │ └── System.Linq.xml
│ │ │ ├── es
│ │ │ │ └── System.Linq.xml
│ │ │ ├── fr
│ │ │ │ └── System.Linq.xml
│ │ │ ├── it
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ja
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ko
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ru
│ │ │ │ └── System.Linq.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Linq.xml
│ │ │ └── zh-hant
│ │ │ └── System.Linq.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Linq.dll
│ │ │ ├── System.Linq.xml
│ │ │ ├── de
│ │ │ │ └── System.Linq.xml
│ │ │ ├── es
│ │ │ │ └── System.Linq.xml
│ │ │ ├── fr
│ │ │ │ └── System.Linq.xml
│ │ │ ├── it
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ja
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ko
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ru
│ │ │ │ └── System.Linq.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Linq.xml
│ │ │ └── zh-hant
│ │ │ └── System.Linq.xml
│ │ ├── netstandard1.6
│ │ │ ├── System.Linq.dll
│ │ │ ├── System.Linq.xml
│ │ │ ├── de
│ │ │ │ └── System.Linq.xml
│ │ │ ├── es
│ │ │ │ └── System.Linq.xml
│ │ │ ├── fr
│ │ │ │ └── System.Linq.xml
│ │ │ ├── it
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ja
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ko
│ │ │ │ └── System.Linq.xml
│ │ │ ├── ru
│ │ │ │ └── System.Linq.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Linq.xml
│ │ │ └── zh-hant
│ │ │ └── System.Linq.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Net.NameResolution.4.3.0
│ │ ├── System.Net.NameResolution.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Net.NameResolution.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Net.NameResolution.dll
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Net.NameResolution.dll
│ │ │ │ ├── System.Net.NameResolution.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Net.NameResolution.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Net.NameResolution.xml
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ └── netstandard1.3
│ │ │ └── System.Net.NameResolution.dll
│ │ └── win
│ │ └── lib
│ │ ├── net46
│ │ │ └── System.Net.NameResolution.dll
│ │ ├── netcore50
│ │ │ └── System.Net.NameResolution.dll
│ │ └── netstandard1.3
│ │ └── System.Net.NameResolution.dll
│ ├── System.Net.Security.4.3.0
│ │ ├── System.Net.Security.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Net.Security.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Net.Security.dll
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Net.Security.dll
│ │ │ │ ├── System.Net.Security.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Net.Security.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Net.Security.xml
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ └── netstandard1.6
│ │ │ └── System.Net.Security.dll
│ │ ├── win
│ │ │ └── lib
│ │ │ ├── net46
│ │ │ │ └── System.Net.Security.dll
│ │ │ └── netstandard1.3
│ │ │ └── System.Net.Security.dll
│ │ └── win7
│ │ └── lib
│ │ └── netcore50
│ │ └── _._
│ ├── System.Net.Sockets.4.3.0
│ │ ├── System.Net.Sockets.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Net.Sockets.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ └── System.Net.Sockets.dll
│ │ ├── netstandard1.3
│ │ │ ├── System.Net.Sockets.dll
│ │ │ ├── System.Net.Sockets.xml
│ │ │ ├── de
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── es
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── fr
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── it
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── ja
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── ko
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── ru
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Net.Sockets.xml
│ │ │ └── zh-hant
│ │ │ └── System.Net.Sockets.xml
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Runtime.4.3.0
│ │ ├── System.Runtime.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net462
│ │ │ │ └── System.Runtime.dll
│ │ │ ├── portable-net45 win8 wp80 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net462
│ │ │ └── System.Runtime.dll
│ │ ├── netcore50
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.xml
│ │ ├── netstandard1.2
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.xml
│ │ ├── netstandard1.5
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.xml
│ │ ├── portable-net45 win8 wp80 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Runtime.Extensions.4.3.0
│ │ ├── System.Runtime.Extensions.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net462
│ │ │ │ └── System.Runtime.Extensions.dll
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net462
│ │ │ └── System.Runtime.Extensions.dll
│ │ ├── netcore50
│ │ │ ├── System.Runtime.Extensions.dll
│ │ │ ├── System.Runtime.Extensions.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.Extensions.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.Extensions.dll
│ │ │ ├── System.Runtime.Extensions.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.Extensions.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Runtime.Extensions.dll
│ │ │ ├── System.Runtime.Extensions.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.Extensions.xml
│ │ ├── netstandard1.5
│ │ │ ├── System.Runtime.Extensions.dll
│ │ │ ├── System.Runtime.Extensions.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.Extensions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.Extensions.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Runtime.InteropServices.4.3.0
│ │ ├── System.Runtime.InteropServices.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net462
│ │ │ │ └── System.Runtime.InteropServices.dll
│ │ │ ├── net463
│ │ │ │ └── System.Runtime.InteropServices.dll
│ │ │ ├── portable-net45 win8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net462
│ │ │ └── System.Runtime.InteropServices.dll
│ │ ├── net463
│ │ │ └── System.Runtime.InteropServices.dll
│ │ ├── netcore50
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.InteropServices.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.InteropServices.xml
│ │ ├── netcoreapp1.1
│ │ │ └── System.Runtime.InteropServices.dll
│ │ ├── netstandard1.1
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.InteropServices.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.InteropServices.xml
│ │ ├── netstandard1.2
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.InteropServices.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.InteropServices.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.InteropServices.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.InteropServices.xml
│ │ ├── netstandard1.5
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.InteropServices.xml
│ │ │ ├── de
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── es
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── fr
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── it
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ja
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ko
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── ru
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Runtime.InteropServices.xml
│ │ │ └── zh-hant
│ │ │ └── System.Runtime.InteropServices.xml
│ │ ├── portable-net45 win8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Security.Cryptography.Algorithms.4.3.0
│ │ ├── System.Security.Cryptography.Algorithms.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── net461
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── net463
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── net461
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── net463
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── netstandard1.4
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── netstandard1.6
│ │ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ ├── osx
│ │ │ └── lib
│ │ │ └── netstandard1.6
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ ├── unix
│ │ │ └── lib
│ │ │ └── netstandard1.6
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ └── win
│ │ └── lib
│ │ ├── net46
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ ├── net461
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ ├── net463
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ ├── netcore50
│ │ │ └── System.Security.Cryptography.Algorithms.dll
│ │ └── netstandard1.6
│ │ └── System.Security.Cryptography.Algorithms.dll
│ ├── System.Security.Cryptography.Encoding.4.3.0
│ │ ├── System.Security.Cryptography.Encoding.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.Encoding.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.Encoding.dll
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Security.Cryptography.Encoding.dll
│ │ │ │ ├── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Security.Cryptography.Encoding.xml
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ └── netstandard1.3
│ │ │ └── System.Security.Cryptography.Encoding.dll
│ │ └── win
│ │ └── lib
│ │ ├── net46
│ │ │ └── System.Security.Cryptography.Encoding.dll
│ │ └── netstandard1.3
│ │ └── System.Security.Cryptography.Encoding.dll
│ ├── System.Security.Cryptography.Primitives.4.3.0
│ │ ├── System.Security.Cryptography.Primitives.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.Primitives.dll
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Security.Cryptography.Primitives.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ └── System.Security.Cryptography.Primitives.dll
│ │ ├── netstandard1.3
│ │ │ └── System.Security.Cryptography.Primitives.dll
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Security.Cryptography.X509Certificates.4.3.0
│ │ ├── System.Security.Cryptography.X509Certificates.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ │ ├── net461
│ │ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net46
│ │ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ │ ├── net461
│ │ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll
│ │ │ │ ├── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ ├── netstandard1.4
│ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll
│ │ │ │ ├── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Security.Cryptography.X509Certificates.xml
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ └── netstandard1.6
│ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ └── win
│ │ └── lib
│ │ ├── net46
│ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ ├── net461
│ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ ├── netcore50
│ │ │ └── System.Security.Cryptography.X509Certificates.dll
│ │ └── netstandard1.6
│ │ └── System.Security.Cryptography.X509Certificates.dll
│ ├── System.Text.RegularExpressions.4.3.0
│ │ ├── System.Text.RegularExpressions.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── net463
│ │ │ │ └── System.Text.RegularExpressions.dll
│ │ │ ├── netcore50
│ │ │ │ └── System.Text.RegularExpressions.dll
│ │ │ ├── netstandard1.6
│ │ │ │ └── System.Text.RegularExpressions.dll
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── net463
│ │ │ └── System.Text.RegularExpressions.dll
│ │ ├── netcore50
│ │ │ ├── System.Text.RegularExpressions.dll
│ │ │ ├── System.Text.RegularExpressions.xml
│ │ │ ├── de
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── es
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── it
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Text.RegularExpressions.xml
│ │ ├── netcoreapp1.1
│ │ │ └── System.Text.RegularExpressions.dll
│ │ ├── netstandard1.0
│ │ │ ├── System.Text.RegularExpressions.dll
│ │ │ ├── System.Text.RegularExpressions.xml
│ │ │ ├── de
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── es
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── it
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Text.RegularExpressions.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Text.RegularExpressions.dll
│ │ │ ├── System.Text.RegularExpressions.xml
│ │ │ ├── de
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── es
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── it
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Text.RegularExpressions.xml
│ │ ├── netstandard1.6
│ │ │ ├── System.Text.RegularExpressions.dll
│ │ │ ├── System.Text.RegularExpressions.xml
│ │ │ ├── de
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── es
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── fr
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── it
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ja
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ko
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── ru
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Text.RegularExpressions.xml
│ │ │ └── zh-hant
│ │ │ └── System.Text.RegularExpressions.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── System.Threading.4.3.0
│ │ ├── System.Threading.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ └── System.Threading.dll
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Threading.dll
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ ├── System.Threading.dll
│ │ │ │ ├── System.Threading.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Threading.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── System.Threading.dll
│ │ │ │ ├── System.Threading.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Threading.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Threading.dll
│ │ │ │ ├── System.Threading.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Threading.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Threading.xml
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── runtimes
│ │ └── aot
│ │ └── lib
│ │ └── netcore50
│ │ └── System.Threading.dll
│ ├── System.Threading.Timer.4.3.0
│ │ ├── System.Threading.Timer.4.3.0.nupkg
│ │ ├── ThirdPartyNotices.txt
│ │ ├── dotnet_library_license.txt
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net451
│ │ │ │ └── _._
│ │ │ ├── portable-net451 win81 wpa81
│ │ │ │ └── _._
│ │ │ ├── win81
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ └── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net451
│ │ │ └── _._
│ │ ├── netcore50
│ │ │ ├── System.Threading.Timer.dll
│ │ │ ├── System.Threading.Timer.xml
│ │ │ ├── de
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── es
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── fr
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── it
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ja
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ko
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ru
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ └── zh-hant
│ │ │ └── System.Threading.Timer.xml
│ │ ├── netstandard1.2
│ │ │ ├── System.Threading.Timer.dll
│ │ │ ├── System.Threading.Timer.xml
│ │ │ ├── de
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── es
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── fr
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── it
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ja
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ko
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── ru
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Threading.Timer.xml
│ │ │ └── zh-hant
│ │ │ └── System.Threading.Timer.xml
│ │ ├── portable-net451 win81 wpa81
│ │ │ └── _._
│ │ ├── win81
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── WebSocket4Net.0.15.2
│ │ ├── WebSocket4Net.0.15.2.nupkg
│ │ └── lib
│ │ ├── net20
│ │ │ └── WebSocket4Net.dll
│ │ ├── net35
│ │ │ └── WebSocket4Net.dll
│ │ ├── net40
│ │ │ └── WebSocket4Net.dll
│ │ ├── net45
│ │ │ └── WebSocket4Net.dll
│ │ └── netstandard1.3
│ │ └── WebSocket4Net.dll
│ └── log4net.2.0.3
│ ├── lib
│ │ ├── net10-full
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ ├── net11-full
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ ├── net20-full
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ ├── net35-client
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ ├── net35-full
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ ├── net40-client
│ │ │ ├── log4net.dll
│ │ │ └── log4net.xml
│ │ └── net40-full
│ │ ├── log4net.dll
│ │ └── log4net.xml
│ └── log4net.2.0.3.nupkg
└── images
├── Common.png
├── bg.jpg
├── bullet3.png
├── enemy.png
├── explosion1.png
├── explosion10.png
├── explosion11.png
├── explosion12.png
├── explosion13.png
├── explosion14.png
├── explosion15.png
├── explosion16.png
├── explosion17.png
├── explosion18.png
├── explosion19.png
├── explosion2.png
├── explosion3.png
├── explosion4.png
├── explosion5.png
├── explosion6.png
├── explosion7.png
├── explosion8.png
├── explosion9.png
└── hero3.png
900 directories, 1243 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论