上一页 1 ··· 325 326 327 328 329 330 331 332 333 ··· 399 下一页
摘要: http://stackoverflow.com/questions/1636333/download-file-using-libcurl-in-c-c 阅读全文
posted @ 2016-07-22 15:55 ChuckLu 阅读(782) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/windows/desktop/ms633497(v=vs.85).aspx Enumerates all top-level windows on the screen by passing the handle t 阅读全文
posted @ 2016-07-22 10:20 ChuckLu 阅读(748) 评论(0) 推荐(0)
摘要: https://github.com/masroore/CurlSharp clone版本库之后,在本地使用,会遇到找不到dll的情况 编译EasyGet项目之后,进行调试,会提示 System.BadImageFormatException: 试图加载格式不正确的程序。 (异常来自 HRESULT 阅读全文
posted @ 2016-07-20 15:24 ChuckLu 阅读(637) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/dd321424(v=vs.110).aspx Represents an asynchronous operation that can return a value. Type Parameters The typ 阅读全文
posted @ 2016-07-18 14:49 ChuckLu 阅读(1042) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/system.threading.tasks.task(v=vs.110).aspx The Task class represents a single operation that does not return 阅读全文
posted @ 2016-07-15 17:25 ChuckLu 阅读(262) 评论(0) 推荐(0)
摘要: 需要注意的是,如果设置了Line.Smoothed=true; 那么调用Clear是无效的,虽然清除了曲线上的点。 但是界面上的曲线,并没有消失。 所以,在每一次Line.Clear();之前,必须确保Line.Smoothed设置为false 阅读全文
posted @ 2016-07-14 09:46 ChuckLu 阅读(802) 评论(0) 推荐(0)
摘要: Clears the DataSet of any data by removing all rows in all tables. 需要注意的是这个方法不会清空DataSet中的DataTable,仅仅是把所有DataTable中的DataRow给清除了 DataTable仍然会被保留 如果要连带 阅读全文
posted @ 2016-07-13 10:09 ChuckLu 阅读(592) 评论(0) 推荐(0)
摘要: 需要注意的是,在加载点之前,需要设置Smoothed属性为false 等点加载完成之后,再设置Smoothed属性为true, //如果直接设置Smoothed为true再去加载点的话,曲线就完全不显示了 曲线平滑前 曲线平滑后 阅读全文
posted @ 2016-07-11 09:59 ChuckLu 阅读(1569) 评论(0) 推荐(0)
摘要: store 执行这个命令git config --global credential.helper store 检查命令是否成功 $ git config -l | grep credentialcredential.helper=store 参考: http://www.cnblogs.com/b 阅读全文
posted @ 2016-07-07 17:25 ChuckLu 阅读(5004) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/bb300779(v=vs.100).aspx var list1 = new List<int> {1, 2, 3, 4}; var list2 = new List<int> {2, 3, 5, 6}; var l 阅读全文
posted @ 2016-07-07 11:04 ChuckLu 阅读(3072) 评论(0) 推荐(0)
上一页 1 ··· 325 326 327 328 329 330 331 332 333 ··· 399 下一页