上一页 1 ··· 6 7 8 9 10 11 下一页

2019年10月27日

1.10 使用C#中的lock关键字

摘要: 本代码描述如何确保当前一个线程使用某些资源时,同时其他线程无法使用该资源。 c using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplica 阅读全文

posted @ 2019-10-27 10:50 anjun_xf 阅读(306) 评论(0) 推荐(0) 编辑

1.9 向线程传递参数

摘要: 《C 多线程编程实战》1.9节笔记 演示如何提供一段代码来使用要求的数据运行另一个线程。代码介绍了4种方式来满足此任务。 using System; using System.Collections.Generic; using System.Linq; using System.Text; usi 阅读全文

posted @ 2019-10-27 10:07 anjun_xf 阅读(134) 评论(0) 推荐(0) 编辑

2019年10月7日

LINQ to XML实现对象xml的增删改查

摘要: XmlHelper类 using System.Data; using System.IO; using System.Xml.Linq; using System.Linq; using System.Collections.Generic; using System; using System. 阅读全文

posted @ 2019-10-07 19:02 anjun_xf 阅读(156) 评论(0) 推荐(0) 编辑

2019年9月18日

oracle常用SQL

摘要: PLSQL查询中文是问号(????) 一列分隔成6列,如'1.2.3.4.5.6'分隔成6列 SELECT TO_NUMBER(REGEXP_SUBSTR('1.2.3.4.5.6','[^.]+',1,1)) T1 ,NVL(TO_NUMBER(REGEXP_SUBSTR('1.2.3.4.5.6 阅读全文

posted @ 2019-09-18 09:52 anjun_xf 阅读(210) 评论(0) 推荐(0) 编辑

2019年9月16日

从oracle库中导出创建表SQL

摘要: 导出表结构:工具 > 导出用户对象 > 找到表,选中 然后点导出 导出结果:select查询出结果,然后倒数第三个按钮"导出结果"到sql或Excel PLSQL如何导出表中的内容为sql?导出为.sql文件 阅读全文

posted @ 2019-09-16 16:33 anjun_xf 阅读(2437) 评论(0) 推荐(0) 编辑

2019年9月12日

windows远程连接,在远程服务器上访问本地磁盘

摘要: 远程连接,在服务器访问本地磁盘,按下图设置登陆后,在“我的电脑”能看到自己电脑磁盘。 win server2003用 mstsc.exe (windows server 2003) 阅读全文

posted @ 2019-09-12 11:04 anjun_xf 阅读(1181) 评论(0) 推荐(0) 编辑

win server 2003服务器安装.net framework 4.0

摘要: win server 2003服务器安装.net framework 4.0 运行.net framework提示如图: 1、下载wic文件: "32位" 、 "64位" (wic安装完毕后没有提示重启服务器) 2、然后安装64位 安装完毕提示重启服务器 阅读全文

posted @ 2019-09-12 09:11 anjun_xf 阅读(4566) 评论(0) 推荐(0) 编辑

2019年8月2日

C#的一些零碎知识点

摘要: 什么时候用queue和stack? Arrays和List是“随机”读取的,很灵活。但如果你想用先进先出,或者先进后出的顺序,就可以用queue 和 stack。 遍历List<T>会以什么顺序进行? 这取决于IEnumerator的实现,但是对于List<T>,它将始终按照列表的自然顺序进行,即与 阅读全文

posted @ 2019-08-02 08:34 anjun_xf 阅读(161) 评论(0) 推荐(0) 编辑

2019年8月1日

命令行查看和删除电脑上证书

摘要: win10,下面1.bat文件命令分别用于进入certmgr.exe目录,删除电脑里my区域(可以改成root 受信任的根证书...)内"abc"开头的证书,查询my内所有证书: 阅读全文

posted @ 2019-08-01 09:09 anjun_xf 阅读(1856) 评论(0) 推荐(0) 编辑

2019年7月26日

windows下安装nginx和使用

摘要: "windows下安装nginx" 相应的命令: start nginx.exe 安装nginx nginx.exe s stop 停止nginx nginx.exe s reload 重新加载nginx nginx.exe s quit 退出nginx windows下卸载: 停止nginx进程, 阅读全文

posted @ 2019-07-26 15:03 anjun_xf 阅读(270) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 下一页

导航

TOP