【例子介绍】用C#实现的一个模拟福利彩票双色球的选号windows应用程序,随机生成号码,号码的排序并输出。
【相关图片】
【源码结构】
文件清单
└── ps_two
├── ps_two
│ ├── bin
│ │ └── Debug
│ │ ├── ps_two.exe
│ │ ├── ps_two.pdb
│ │ └── ps_two.vshost.exe
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ps_two.csproj.GenerateResource.Cache
│ │ │ ├── ps_two.exe
│ │ │ ├── ps_two.Form1.resources
│ │ │ ├── ps_two.Form2.resources
│ │ │ ├── ps_two.pdb
│ │ │ ├── ps_two.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── ps_two.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── ps_two.csproj
├── ps_two.sln
└── ps_two.suo
9 directories, 25 files
评论