当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 73 下一页
摘要: 1、什么情况下会用到dispose关键字? dispose用于显示的回收托管和非托管资源。 托管资源指那些资源的回收工作由.net内存管理机制(CLR)的GC(Garbage Collection) 机制自动完成,无需显式释放的资源。比如int,string,float,DateTime对象,.ne 阅读全文
posted @ 2020-03-18 11:25 hofmann 阅读(330) 评论(0) 推荐(0)
摘要: 一、Virtual(虚方法修饰关键字) virtual 关键字用于在基类中修饰方法。virtual的使用会有两种情况: 情况1:在基类中定义了virtual方法,但在派生类中没有重写该虚方法。那么在对派生类实例的调用中,该虚方法使用的是基类定义的方法。 情况2:在基类中定义了virtual方法,然后 阅读全文
posted @ 2020-03-12 21:11 hofmann 阅读(379) 评论(0) 推荐(0)
摘要: declare @school nvarchar(max) set @school=N'中国人民大学(苏州校区)(K53)' select @school ,len(@school) [len] ,charindex('(',@school) [first indexof] ,len(@school 阅读全文
posted @ 2020-03-12 14:29 hofmann 阅读(421) 评论(0) 推荐(0)
摘要: #region 字节算法 [TestMethod] public void BytesTest() { var result = HumanReadableFilesize(232298705); } /// <summary> /// 转换方法 /// </summary> /// <param 阅读全文
posted @ 2020-03-10 00:17 hofmann 阅读(901) 评论(0) 推荐(0)
摘要: <meta content="yes" name="apple-mobile-web-app-capable"> 删除默认的苹果工具栏和菜单栏。 需要显示工具栏和菜单栏时,不需要添加,默认值为no,即正常显示。如果content设置为yes,Web应用会以全屏模式运行,可以通过只读属性window. 阅读全文
posted @ 2020-03-08 15:43 hofmann 阅读(3250) 评论(1) 推荐(0)
摘要: <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> W3C 工作组考虑到了我们升级 HTTPS 的艰难,在 2015 年 4 月份就出了一个 Upgrade Insecure Requests 阅读全文
posted @ 2020-03-08 15:32 hofmann 阅读(900) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <title>Handlebars Expressions Example</title> </head> <body> <h1>Handlebars Expressions Example!</h1> <!--this is a list 阅读全文
posted @ 2020-03-07 23:00 hofmann 阅读(533) 评论(0) 推荐(0)
摘要: 1.展开服务器对象-->链接服务器-->右击"新建链接服务器",注意:必须以数据库管理员身份登录(通常也就是sa帐号)后,才可以创建"链接服务器" 2.输入链接服务器的IP 3.设置链接服务器的安全性 阅读全文
posted @ 2020-03-06 22:33 hofmann 阅读(1686) 评论(0) 推荐(0)
摘要: 在64位的机器上安装64位的 Microsoft.ACE.OLEDB.12.0http://www.microsoft.com/zh-cn/download/details.aspx?id=13255 可视化修改导入功能,允许在进程中使用: tsql脚本修改导入功能,允许进程内使用,然后执行sql 阅读全文
posted @ 2020-03-06 19:52 hofmann 阅读(2502) 评论(0) 推荐(2)
摘要: 遍历指定文件夹内所有的xls,首先获取所有文件夹内的xls文件路径,使用VBA脚本生成到一个xls文件中,VBA脚本如下: Sub filelist() Dim MyName, Dic, Did, i, t, F, TT, MyFileName 'On Error Resume Next Set o 阅读全文
posted @ 2020-03-06 19:41 hofmann 阅读(1396) 评论(0) 推荐(0)
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 73 下一页