- 博客(3)
- 资源 (4)
- 收藏
- 关注
原创 C#遍历一个文件夹下的所有特定文件(包括子文件夹)
c#遍历一个文件夹下的所有特定文件包括子文件夹采用递归调用的方式遍历,文件夹和子文件中的所有文件。public int FindFiles(string dirPath,out List<string> fileList,string fileExtention) { fileList = new List<string>();/...
2019-11-01 11:53:28 1083
原创 如何取随机数
在工作时遇到Excel里用到随机数,发现在VBA中,如果使用Rnd取随机数,实际上取到只是1~65535分之一,并且取到的这种伪随机数顺序还是一定的。如想用系统时间做种子在此范围内取一个数充当随机数,需要在Rnd的前面加上Randomize。下面是我工作里使用的一段VBA代码,使用了系统时间做随机种子Private Sub CommandButton1_Click() rName = ...
2019-10-17 13:16:16 543
翻译 异步调用同步方法
Calling Synchronous Methods Asynchronously异步调用同步方法一 介绍The .NET Framework enables you to call any method asynchronously. To do this you define a delegate with the same signature as the method you w...
2019-10-15 13:38:30 562
VC++2017 32位
2018-06-01
VC++2017 64位
2018-06-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人