Windows程序 C# 3.0 特性之扩展方法
今天,我们来聊一聊C#的扩展方法。C# 3.0中为我们提供了一个新的特性—扩展方法。什么是扩展方法呢?我们看一下……
Windows程序 BZOJ 1179: [Apio2009]Atm( tarjan + 最短路 )
对于一个强连通分量, 一定是整个走或者不走, 所以tarjan缩点然后跑dijkstra.------------------------------------------------------……
Windows程序 Uva 12436 Rip Van Winkles Code
Rip Van Winkle was fed up with everything except programming. One day he found a problem whichrequired to perform three types of update operations (A,……
Windows程序 C#中的自定义控件中的属性、事件及一些相关特性的总结
今天学习了下C#用户控件开发添加自定义属性的事件,主要参考了MSDN,总结并实验了一些用于开发自定义属性和事件……
Windows程序 C# Math类简介
Math.abs()计算绝对值。Math.acos()计算反余弦值。Math.asin()计算反正弦值。Math.atan()计算反正切值。Math.atan2()计算从x坐标轴……
Windows程序 用 C# 轻松读取、改变文件的创建、修改、访问时间
创建时间是文件存入到电脑中的时间,而修改时间则是改变起内容的最后时间// 读取文件的创建、修改、访问时间F……
Windows程序 无刷新更新地址 history.pushState/replaceState 方法
(window.location)在通过JavaScript更改以后,浏览器都会通过刷新来到达你更改后的URL(location的意思就是位 置。。)而在Ja……
Windows程序 C# 给picturebox添加滚动条
在一个项目中需要给picturebox增加滚动条,我先前的做法和网上一样,将picturebox放在一个panel上,将panel的AutoScroll设置……
Windows程序 解除win7系统静音
#include #include #include //#include //using namespace std;#define SAFE_RELEASE(punk) \if ((punk) != NULL) \{ (punk)-Release(); (punk) = NULL; }#.....……