LGED

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2017年10月23日

摘要: public class Screen { /// Primary Screen #region Win32 API [DllImport("user32.dll")] static extern IntPtr GetDC(IntPtr ptr); [DllImport("gdi32... 阅读全文
posted @ 2017-10-23 21:55 LGED 阅读(456) 评论(0) 推荐(0) 编辑

2017年8月17日

摘要: 1 遍历属性 阅读全文
posted @ 2017-08-17 22:16 LGED 阅读(157) 评论(0) 推荐(0) 编辑

2017年6月3日

摘要: 贪婪:.+。(默认为贪婪模式,尽可能的多匹配。) 非贪婪:.+?。(尽可能的少匹配,(1个。)) 阅读全文
posted @ 2017-06-03 08:48 LGED 阅读(108) 评论(0) 推荐(0) 编辑

2017年3月9日

该文被密码保护。 阅读全文
posted @ 2017-03-09 23:27 LGED 阅读(3) 评论(0) 推荐(0) 编辑

2017年2月24日

摘要: php c# 阅读全文
posted @ 2017-02-24 14:07 LGED 阅读(281) 评论(0) 推荐(0) 编辑

2017年2月16日

摘要: XAML CS 阅读全文
posted @ 2017-02-16 11:12 LGED 阅读(3757) 评论(0) 推荐(1) 编辑

2016年12月26日

摘要: using System; namespace TheDelegate { public class People { public static void Say() { Console.WriteLine("好的,我说一下,是我代干的哈。"); } public static int S... 阅读全文
posted @ 2016-12-26 20:13 LGED 阅读(172) 评论(0) 推荐(0) 编辑

2016年11月19日

摘要: C#遍历字典 阅读全文
posted @ 2016-11-19 15:32 LGED 阅读(1982) 评论(0) 推荐(0) 编辑

2016年9月20日

摘要: 排序算法: 查找算法 阅读全文
posted @ 2016-09-20 18:01 LGED 阅读(1441) 评论(0) 推荐(0) 编辑

2016年8月24日

摘要: #include #include #include #define random(a,b) (rand() % (b-a) + a) using namespace std; int main() { srand((unsigned)time(NULL)); for(int i=0; i<10; i++) cout << random(1,100) ... 阅读全文
posted @ 2016-08-24 15:04 LGED 阅读(225) 评论(0) 推荐(0) 编辑