【例子介绍】计算质数及相邻质数差
【相关图片】
【源码结构】
.
├── C#计算质数及相邻质数差_相邻质数.rar
└── 相邻质数
├── 相邻质数
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AssemblyInfo.cs
│ ├── Icon1.ico
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── bin
│ │ ├── Debug
│ │ │ └── netcoreapp3.1
│ │ │ ├── NumberStorageFile.xml
│ │ │ ├── StorePrimeNumberFile
│ │ │ │ ├── Prime_number10000.txt
│ │ │ │ └── Prime_number5000.txt
│ │ │ ├── 相邻质数.deps.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.exe
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数.runtimeconfig.dev.json
│ │ │ └── 相邻质数.runtimeconfig.json
│ │ ├── Release
│ │ │ └── netcoreapp3.1
│ │ │ ├── NumberStorageFile.xml
│ │ │ ├── Prime_number_B.txt
│ │ │ ├── StorePrimeNumberFile
│ │ │ │ └── Prime_number5000.txt
│ │ │ ├── 相邻质数.deps.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.exe
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数.runtimeconfig.dev.json
│ │ │ └── 相邻质数.runtimeconfig.json
│ │ └── x64
│ │ ├── Debug
│ │ │ └── netcoreapp3.1
│ │ │ ├── NumberStorageFile.xml
│ │ │ ├── StorePrimeNumberFile
│ │ │ │ └── Prime_number10000.txt
│ │ │ ├── 相邻质数.deps.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.exe
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数.runtimeconfig.dev.json
│ │ │ └── 相邻质数.runtimeconfig.json
│ │ └── Release
│ │ └── netcoreapp3.1
│ │ ├── NumberStorageFile.xml
│ │ ├── StorePrimeNumberFile
│ │ │ └── Prime_number10000.txt
│ │ ├── 相邻质数.deps.json
│ │ ├── 相邻质数.dll
│ │ ├── 相邻质数.exe
│ │ ├── 相邻质数.pdb
│ │ ├── 相邻质数.runtimeconfig.dev.json
│ │ └── 相邻质数.runtimeconfig.json
│ ├── obj
│ │ ├── Debug
│ │ │ ├── net5.0-windows
│ │ │ │ ├── App.g.cs
│ │ │ │ ├── App.g.i.cs
│ │ │ │ ├── MainWindow.baml
│ │ │ │ ├── MainWindow.g.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── apphost.exe
│ │ │ │ ├── ref
│ │ │ │ │ └── 相邻质数.dll
│ │ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ │ ├── 相邻质数.assets.cache
│ │ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ │ ├── 相邻质数.csproj.CoreCompileInputs.cache
│ │ │ │ ├── 相邻质数.csproj.FileListAbsolute.txt
│ │ │ │ ├── 相邻质数.designer.deps.json
│ │ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ │ ├── 相邻质数.dll
│ │ │ │ ├── 相邻质数.g.resources
│ │ │ │ ├── 相邻质数.genruntimeconfig.cache
│ │ │ │ ├── 相邻质数.pdb
│ │ │ │ ├── 相邻质数_MarkupCompile.cache
│ │ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ │ └── 相邻质数_MarkupCompile.lref
│ │ │ ├── netcoreapp3.0
│ │ │ │ ├── App.g.i.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ │ ├── 相邻质数.assets.cache
│ │ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ │ ├── 相邻质数.designer.deps.json
│ │ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ │ └── 相邻质数_MarkupCompile.i.lref
│ │ │ └── netcoreapp3.1
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── apphost.exe
│ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── 相邻质数.assets.cache
│ │ │ ├── 相邻质数.csproj.CoreCompileInputs.cache
│ │ │ ├── 相邻质数.csproj.FileListAbsolute.txt
│ │ │ ├── 相邻质数.designer.deps.json
│ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.g.resources
│ │ │ ├── 相邻质数.genruntimeconfig.cache
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数_MarkupCompile.cache
│ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ └── 相邻质数_MarkupCompile.lref
│ │ ├── Release
│ │ │ ├── net5.0-windows
│ │ │ │ ├── App.g.i.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── ref
│ │ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ │ └── 相邻质数_MarkupCompile.i.lref
│ │ │ └── netcoreapp3.1
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── apphost.exe
│ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── 相邻质数.assets.cache
│ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ ├── 相邻质数.csproj.CoreCompileInputs.cache
│ │ │ ├── 相邻质数.csproj.FileListAbsolute.txt
│ │ │ ├── 相邻质数.designer.deps.json
│ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.g.resources
│ │ │ ├── 相邻质数.genruntimeconfig.cache
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数_MarkupCompile.cache
│ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ └── 相邻质数_MarkupCompile.lref
│ │ ├── project.assets.json
│ │ ├── project.nuget.cache
│ │ ├── x64
│ │ │ ├── Debug
│ │ │ │ └── netcoreapp3.1
│ │ │ │ ├── App.g.cs
│ │ │ │ ├── App.g.i.cs
│ │ │ │ ├── MainWindow.baml
│ │ │ │ ├── MainWindow.g.cs
│ │ │ │ ├── MainWindow.g.i.cs
│ │ │ │ ├── apphost.exe
│ │ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ │ ├── 相邻质数.assets.cache
│ │ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ │ ├── 相邻质数.csproj.CoreCompileInputs.cache
│ │ │ │ ├── 相邻质数.csproj.FileListAbsolute.txt
│ │ │ │ ├── 相邻质数.designer.deps.json
│ │ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ │ ├── 相邻质数.dll
│ │ │ │ ├── 相邻质数.g.resources
│ │ │ │ ├── 相邻质数.genruntimeconfig.cache
│ │ │ │ ├── 相邻质数.pdb
│ │ │ │ ├── 相邻质数_MarkupCompile.cache
│ │ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ │ └── 相邻质数_MarkupCompile.lref
│ │ │ └── Release
│ │ │ └── netcoreapp3.1
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── apphost.exe
│ │ │ ├── 相邻质数.AssemblyInfo.cs
│ │ │ ├── 相邻质数.AssemblyInfoInputs.cache
│ │ │ ├── 相邻质数.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── 相邻质数.assets.cache
│ │ │ ├── 相邻质数.csproj.AssemblyReference.cache
│ │ │ ├── 相邻质数.csproj.CoreCompileInputs.cache
│ │ │ ├── 相邻质数.csproj.FileListAbsolute.txt
│ │ │ ├── 相邻质数.designer.deps.json
│ │ │ ├── 相邻质数.designer.runtimeconfig.json
│ │ │ ├── 相邻质数.dll
│ │ │ ├── 相邻质数.g.resources
│ │ │ ├── 相邻质数.genruntimeconfig.cache
│ │ │ ├── 相邻质数.pdb
│ │ │ ├── 相邻质数_MarkupCompile.cache
│ │ │ ├── 相邻质数_MarkupCompile.i.cache
│ │ │ └── 相邻质数_MarkupCompile.lref
│ │ ├── 相邻质数.csproj.nuget.dgspec.json
│ │ ├── 相邻质数.csproj.nuget.g.props
│ │ └── 相邻质数.csproj.nuget.g.targets
│ ├── 相邻质数.csproj
│ └── 相邻质数.csproj.user
└── 相邻质数.sln
31 directories, 178 files
评论