上一页 1 2 3 4 5 6 ··· 47 下一页
摘要: 通过pg_typeof //基础示例 SELECT pg_typeof(id) FROM t_basic_config LIMIT 1; //多表join SELECT pg_typeof(a.id),pg_typeof(b.user_password) FROM t_basic_config a 阅读全文
posted @ 2025-09-10 21:14 Hey,Coder! 阅读(11) 评论(0) 推荐(0)
摘要: client = new RestClient(new RestClientOptions { RemoteCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => true }); 阅读全文
posted @ 2025-09-04 21:21 Hey,Coder! 阅读(17) 评论(0) 推荐(0)
摘要: webView.CoreWebView2.ServerCertificateErrorDetected += WebView_ServerCertificateErrorDetected; private void WebView_ServerCertificateErrorDetected(obj 阅读全文
posted @ 2025-09-04 21:20 Hey,Coder! 阅读(27) 评论(0) 推荐(0)
摘要: 备份脚本 @echo off REM 获取当前日期和时间,并格式化为 YYYYMMDD_HHMMSS set hour=%time:~0,2% REM 处理小时是个位数的情况(前面带空格的问题),替换空格为0 if "%hour:~0,1%"==" " set hour=0%hour:~1,1% s 阅读全文
posted @ 2025-08-28 09:35 Hey,Coder! 阅读(27) 评论(0) 推荐(0)
摘要: 功能 在程序运行前加载特定的dll 配置环境变量 DOTNET_STARTUP_HOOKS=/path/to/StartupHook1.dll:/path/to/StartupHook2.dll dll代码示例 internal class StartupHook { public static v 阅读全文
posted @ 2025-08-12 11:23 Hey,Coder! 阅读(14) 评论(0) 推荐(0)
摘要: 将代码编译都内存对象中,保存编译后的类型到文件或者数据库中直接加载运行 阅读全文
posted @ 2025-08-07 18:23 Hey,Coder! 阅读(17) 评论(0) 推荐(0)
摘要: nuget <PackageReference Include="LiveCharts.Wpf.Core" Version="0.9.8" /> <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" /> Customers 阅读全文
posted @ 2025-07-31 19:11 Hey,Coder! 阅读(68) 评论(0) 推荐(0)
摘要: <lvc:CartesianChart LegendLocation="None" Name="chart1" Hoverable="False" > <lvc:CartesianChart.DataTooltip> <lvc:DefaultTooltip SelectionMode="OnlySe 阅读全文
posted @ 2025-07-31 18:37 Hey,Coder! 阅读(45) 评论(0) 推荐(0)
摘要: <lvc:CartesianChart LegendLocation="None" > <lvc:CartesianChart.Series > <lvc:LineSeries Fill="Transparent" Values="{Binding TestValue}" Title="test" 阅读全文
posted @ 2025-07-18 17:26 Hey,Coder! 阅读(18) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; public class LinuxHelper { public string GetCpu() { var r 阅读全文
posted @ 2025-07-11 10:16 Hey,Coder! 阅读(62) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 47 下一页