全部博文(1293)
发布时间:2015-02-26 10:36:23
.net自带的有播放.wav格式音频文件的类:System.Media.SoundPlayer,只要调用这个类就可以了。 代码如下: string path = “....../sound.wav”;//.wav音频文件路径 System.Media.SoundPlayer player = new System.Media.SoundPlayer(path); player..........【阅读全文】
发布时间:2015-02-09 14:51:35
主要实现代码如下:using System; using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace AlignForHashtable{ class Program&nb.........【阅读全文】
发布时间:2015-02-03 14:45:54
将多个EXE打成一个安装包,再依次逐个启动,该如何处理? WinRAR提供了一个解决方案。操作步骤如下: 需要在当前目录下选择文件进行添加到压缩文件。 修改压缩包名字为xxx.exe,进入高级设置。 最后直接在压缩包的注释中写入上面脚本。 .........【阅读全文】
发布时间:2015-01-28 11:49:18
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace TestArrayList { class Program { public struct SData .........【阅读全文】
发布时间:2015-01-27 09:37:45
当你从VS2010的DEBUG向RELASE模式切换时,发现RELEASE下竟然无法编译? 问题出在哪里?打开配置管理器看看: 原来问题出在这里!!! ......【阅读全文】