
C#基础
文章平均质量分 55
C#基础
sam-zy
代码的搬运工
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#Winform 1.清空textBox,2.清空数组,3.double 转 int,4.数组double转int,5.数组长度,6. 窗体只打开一次
System.out.println("向上取整:" + (int) Math.ceil(30.1));// 31 System.out.println("向下取整" + (int) Math.floor(30.7));// 30 System.out.println("四舍五入取整:" + Math.round(30.1));//30 System.out.println("四舍五入取整:" + Math.round(30.8));// 31 ...原创 2021-10-19 21:48:57 · 718 阅读 · 0 评论 -
C# Dictionary字典基本操作
1.Dictionary字典基本操作 class Program { static void Main(string[] args) { //Dictionary字典基本操作 //原文链接:https://www.cnblogs.com/txw1958/archive/2012/11/07/csharp-dictionary.html Dictionary<string, string>原创 2021-12-31 11:05:51 · 1359 阅读 · 0 评论