随笔分类 -  c#知识点

上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要:https://blog.csdn.net/weixin_34242509/article/details/93440590 private,只有类内可直接访问,protected,类内和子类可直接访问,public,谁都能直接访问。继承类型意思是说把父类放在哪。举例:class A{public: 阅读全文
posted @ 2023-01-31 11:12 yinghualeihenmei 阅读(205) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/NCTU_to_prove_safety/article/details/72882647 例如:<bkk><rp fe="few" ><fe>fff</fe></rp></bkk> 对于fe这个元素,innerxml是fff,outerxml是<fe>f 阅读全文
posted @ 2023-01-10 15:53 yinghualeihenmei 阅读(14) 评论(0) 推荐(0) 编辑
摘要:原文链接:http://edu.jb51.net/csharp/csharp-collection-hashtable.html Hashtable 类代表了一系列基于键的哈希代码组织起来的键/值对。它使用键来访问集合中的元素。 当您使用键访问元素时,则使用哈希表,而且您可以识别一个有用的键值。哈希 阅读全文
posted @ 2023-01-05 12:10 yinghualeihenmei 阅读(117) 评论(0) 推荐(0) 编辑
摘要:原文链接:https://blog.csdn.net/myy629464/article/details/76783370 http://www.noobyard.com/article/p-ubifwkck-bo.html 解决办法: 代码:(那个窗体出错那个源中写) <asp:ScriptMan 阅读全文
posted @ 2022-12-30 10:55 yinghualeihenmei 阅读(494) 评论(0) 推荐(0) 编辑
摘要:https://ask.csdn.net/questions/698969 你代码里没有正确关闭文件。或者你把iis express停止了(一般它会在你的任务栏有一个图标,点它可以停止),再删除。 我是将运行的程序关掉之后才能删掉。 阅读全文
posted @ 2022-12-26 12:50 yinghualeihenmei 阅读(464) 评论(0) 推荐(0) 编辑
摘要:文章来源:http://wjhsh.net/walt-p-11298037.html 调试程序,先运行后端代码,再加载前端body onload()里的方法。 前端往后端提交数据的方式常用的就这么三种:1.form提交;2.url参数提交;3.json提交 1.针对表单form方式的提交 在后端使用 阅读全文
posted @ 2022-12-13 19:08 yinghualeihenmei 阅读(383) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_34189116/article/details/91528171 text/html & text/plain的区别 需要了解的概念 Content-Type:用于定义用户的浏览器或相关设备如何显示将要加载的数据,或者如何处理将要加载的数据 阅读全文
posted @ 2022-12-12 14:09 yinghualeihenmei 阅读(347) 评论(0) 推荐(0) 编辑
摘要:https://m.php.cn/article/456769.html pdb是指“程序数据库”文件,是VS编译链接时生成的文件。DPB文件主要存储了VS调试程序时所需要的基本信息,主要包括源文件名、变量名、函数名、FPO、对应的行号等等。PDB文件是在编译工程的时候产生的,它是和对应的模块一起生 阅读全文
posted @ 2022-12-11 19:44 yinghualeihenmei 阅读(680) 评论(0) 推荐(0) 编辑
摘要:找了好久。。。各种测也没测出来问题,就是报错,最后将MySql.Data.dll升级到了最高版本就好了。。。 阅读全文
posted @ 2022-12-09 18:07 yinghualeihenmei 阅读(89) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_35698069/article/details/113377622 1.在项目目录下添加MySql.Data.dll 首先找到MySql.Data.dll,我的路径为:C:\Program Files (x86)\MySQL\Connect 阅读全文
posted @ 2022-12-09 11:18 yinghualeihenmei 阅读(520) 评论(0) 推荐(0) 编辑
摘要:https://wenku.baidu.com/view/22c84ef583eb6294dd88d0d233d4b14e84243e51.html?_wkts_=1670497404110&bdQuery=r%E5%85%A5%E5%BA%93%E5%A4%B1%E8%B4%A5%2C%E7%BB 阅读全文
posted @ 2022-12-08 23:42 yinghualeihenmei 阅读(1337) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/xufengab/article/details/123416231 一、vs2015中没有reportview组件,需要安装。 在VS中选择工具——Nuget包管理器——程序包管理器控制台 执行命令:Install-Package Microsoft.R 阅读全文
posted @ 2022-12-05 19:45 yinghualeihenmei 阅读(341) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_40313232/article/details/124987701 https://www.cnblogs.com/wujy/archive/2013/01/08/2851857.html https://learn.microsoft.com/z 阅读全文
posted @ 2022-11-26 14:39 yinghualeihenmei 阅读(105) 评论(0) 推荐(0) 编辑
摘要:http://www.splaybow.com/csharp-get-set.shtml C#类属性之get与setC#类的属性有公有属性(public)和私有属性(private)。如果直接将一个属性声明为public,则该类的任意实例可以随意获取或修改该属性的值,很不安全。.NET Framew 阅读全文
posted @ 2022-11-25 17:48 yinghualeihenmei 阅读(1158) 评论(2) 推荐(0) 编辑
摘要:https://blog.csdn.net/q1923408717/article/details/112240630 TryParse这个函数返回类型为bool类型,用以判断作为参数A(参数A必须为字符串)是否可以转换为前面的类型。如果可以转换,那么则将转化结果以out类型参数的方式返回。例子如下 阅读全文
posted @ 2022-11-22 19:14 yinghualeihenmei 阅读(52) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/477322362.html 命名空间:System.Web.UI程序集:System.Web.Extensions.dll 功能跟Page上的ClientScript差不多,不过主要是用来支持ASP.NET Ajax Framew 阅读全文
posted @ 2022-11-22 13:44 yinghualeihenmei 阅读(21) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/yhl1234/archive/2006/12/09/587114.html Page_Load(){ // some codes:code1 ...... If(!IsPostBack) { // some codes:code2 ...... } 阅读全文
posted @ 2022-11-22 10:43 yinghualeihenmei 阅读(18) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/A080807/article/details/124483863 https://www.cnblogs.com/HomeSapiens/p/16366835.html C#新建和开启线程的Thread方法 第一步:使用System.Threading命 阅读全文
posted @ 2022-11-19 14:37 yinghualeihenmei 阅读(2739) 评论(0) 推荐(1) 编辑
摘要:https://wenda.so.com/q/1373000633063497 引用COM组件Windows Script Host Object Model;//设置一个快捷方式IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.W 阅读全文
posted @ 2022-11-18 14:41 yinghualeihenmei 阅读(466) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/lindexi_gd/article/details/100174991 如果想要创建快捷方式等,很多使用都需要引用 WshShell 类,这个类需要通过 COM 的方法引用 引用 WshShell 不是在一个程序集,而是 Windows Script H 阅读全文
posted @ 2022-11-18 14:31 yinghualeihenmei 阅读(175) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
点击右上角即可分享
微信分享提示