Windows程序 Fix “Could Not Find This Item” When Deleting in Windows 7
If you’ve been using Windows for as long as I have, you have probably run into your share of weird error messages. One that I got recently when tryin……
Windows程序 C# Socket 编程
EndPoint 类标识网络地址。这是一个 abstract 类。命名空间:System.Net程序集:System(在 System.dll 中)[SerializableAttribute]……
Windows程序 C#获取文件夹下面的所有文件
/// /// 获取文件夹下所有文件信息 /// /// public static List FindFolderName() { DirectoryInfo theFolder = new Dir...……
Windows程序 sphinx调用API参考(官方手册)
Sphnix有几种不同编程语言的searchd客户端API的实现。在本文完成之时,我们对我们自己的PHP,Python和java实现提供官方支……
Windows程序 asm / 嵌入x86汇编
C#可不可以嵌入汇编 可以 在我眼中C#作为一个介于中上层语言是不可能不可以置入汇编代码的 为什么会被我认为中上……
Windows程序 Windows Azure存储共享配置介绍
WindowsAzure存储共享配置介绍我们都知道windowsazure上创建的vm全部格式都为.vhd格式文件,这样我们就可以使用azurepower……
Windows程序 C#基础:值类型、引用类型与ref关键字
在C#中,ref的意思是按引用传递。可以参考C++:inta=10,b=20; voidswap(intx,inty) { inttemp=x; x=y; y=temp; }如果简单的调用这个s……
Windows程序 WPF基础学习笔记(一)Dependency Object 和 Dependency Property
。依赖属性是WPF个人觉得对精彩和最有特色的部分。所以特地先拿出来。首先要实现Dependency Property则必须要继承Dep……
Windows程序 WebApi的一种集成测试写法(in
WebApi的一种集成测试写法(in-memory)大家是如何对webApi写测试的呢?1.利用Fiddler直接做请求,观察response的内容。2.利用……