02 2014 档案

摘要:一个下午搞定的 当然只是个测试版需添加引用HtmlAgilityPack代码如下using HtmlAgilityPack;using System;using System.Collections.Specialized;using System.Linq;using System.Net;usi... 阅读全文
posted @ 2014-02-15 18:30 fuis 阅读(3283) 评论(0) 推荐(0)
摘要:某黑客游戏攻略第一关F12打开开发人员工具可以清楚地看到实现的逻辑 输入hackervip.com 进入第二关(注意空格)第二关还是F12打开开发人员工具用JScript.Encode编码了脚本打开http://www.35wl.com/tools/encode.htm解码得到function Pa... 阅读全文
posted @ 2014-02-11 09:49 fuis 阅读(430) 评论(0) 推荐(0)
摘要:准备开学了没什么时间写了只实现了+号的重载 其他的以后再说using System;using System.Text;namespace high_precision_calculate{ class number { public number(string str) ... 阅读全文
posted @ 2014-02-09 11:42 fuis 阅读(177) 评论(0) 推荐(0)
摘要:二叉树类(binaryTree.cs)using System;namespace binary_tree_demo{ class BinaryTreeNode where T : IComparable { public BinaryTreeNode() {... 阅读全文
posted @ 2014-02-08 20:34 fuis 阅读(244) 评论(0) 推荐(0)
摘要:【转】一个漂亮的按钮样式效果图使用方法添加到MainWindow.xaml 示例ButtonVistaRed.xaml内容 ... 阅读全文
posted @ 2014-02-08 12:12 fuis 阅读(118) 评论(0) 推荐(0)
摘要:使用Socket编写服务端和客户端服务端const int PORT = 6602;Socket listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);IPAddress ip =... 阅读全文
posted @ 2014-02-07 21:19 fuis 阅读(446) 评论(0) 推荐(0)
摘要:非UI线程访问控件在VS2003之后的版本中,.NET加强了线程安全方面,非UI线程是不能直接访问控件的。这要求我们对控件进行线程安全方式的调用。当然,我们也可以这样做:CheckForIllegalCrossThreadCalls = false(这个属性包含在System.Windows.Fo... 阅读全文
posted @ 2014-02-07 21:14 fuis 阅读(167) 评论(0) 推荐(0)