会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Smartisan
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
53
下一页
2021年10月7日
详细解析DLL构建CLR版本冲突问题
摘要: 详细解析DLL构建CLR版本冲突问题 本文将从: 1,.net执行模型——CLR托管运行过程(.net如何实现从代码到运行) 2,Runtime中如何定位程序集 3,.net执行模型——定位程序集依赖项 4,.net执行模型——如何加载程序集依赖项 5,AnyCPU?x86?x64?platform
阅读全文
posted @ 2021-10-07 00:19 博二爷
阅读(545)
评论(0)
推荐(0)
2021年9月30日
App.config配置,实现assembly绑定
摘要: 代码: 1 <?xml version="1.0" encoding="utf-8" ?> 2 <configuration> 3 <startup> 4 <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> 5
阅读全文
posted @ 2021-09-30 10:57 博二爷
阅读(161)
评论(0)
推荐(0)
2021年9月28日
AnyCPU X86 X64 匹配项
摘要: AnyCPU的应用程序+AnyCPU的类库 在x86的操作系统上,应用程序会在32位CLR上运行,所以它引用的类库也会在32位CLR上运行;在x64操作系统上,应用程序许会在64位CLR上运行,所以它引用的类库也会在64为CLR上运行。 x86的应用程序+AnyCPU的类库 在x86的操作系统上,应
阅读全文
posted @ 2021-09-28 17:03 博二爷
阅读(198)
评论(0)
推荐(0)
C# 调用dll (绝对路径亲测可用,使用强名称需要在GAC中)
摘要: 代码: 1 using System; 2 using System.Reflection; 3 namespace Assembly_Load 4 { 5 class Program 6 { 7 public static void Get_GAC_assembly() 8 { 9 string
阅读全文
posted @ 2021-09-28 17:02 博二爷
阅读(264)
评论(0)
推荐(0)
2021年8月25日
全部代码,轻松制作星空图(关系图),采用pm
摘要: 官网文档:https://github.com/anvaka/pm 效果上图: 数据制作: 1 var mysql = require('mysql'); 2 var connection = mysql.createConnection({ 3 host : 'localhost', 4 user
阅读全文
posted @ 2021-08-25 17:20 博二爷
阅读(637)
评论(0)
推荐(0)
2021年8月22日
JS读取mysql数据,易懂
摘要: 代码: 1 var mysql = require('mysql'); 2 var connection = mysql.createConnection({ 3 host : 'localhost', 4 user : 'root', 5 password : 'password', 6 port
阅读全文
posted @ 2021-08-22 11:30 博二爷
阅读(1970)
评论(0)
推荐(0)
2021年8月18日
解决require()未声明问题(require.js实例,小白)
摘要: 目录结构: 代码: Test_graph.html: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <script
阅读全文
posted @ 2021-08-18 21:54 博二爷
阅读(539)
评论(0)
推荐(0)
2021年8月17日
根据浏览器,自动缩放屏幕(在css已经写好px的情况下)
摘要: JQuery $("body[class='main_bg']").attr('style',"zoom: "+$(window).width()/$(document).width()+";");
阅读全文
posted @ 2021-08-17 16:32 博二爷
阅读(146)
评论(0)
推荐(0)
JS,JQuery获取当前屏幕宽度
摘要: JS: 1 网页可见区域宽: document.body.clientWidth 2 网页可见区域高: document.body.clientHeight 3 网页可见区域宽: document.body.offsetWidth (包括边线的宽) 4 网页可见区域高: document.body.
阅读全文
posted @ 2021-08-17 15:59 博二爷
阅读(174)
评论(0)
推荐(0)
2021年8月16日
网页内嵌YouTube视频,极其简单
摘要: 1,在YouTube中复制iframe代码 2,HTML代码: 1 <!DOCTYPE html> 2 <html> 3 <body> 4 <!-- 1. The <iframe> (and video player) will replace this <div> tag. --> 5 <div
阅读全文
posted @ 2021-08-16 11:07 博二爷
阅读(551)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
53
下一页
公告