摘要:
windows下设置开机自动运行批处理脚本 创建或准备bat批处理文件 使用快捷键,win+r 输入:gpedit.msc进入本地策略管理器 点击windows设置下的脚本(启动/关机),然后双击启动 点击添加,然后点击浏览,选择批处理文件然后确定就可以了 批处理文件内容: 启动服务 卸载服务 阅读全文
摘要:
windows下将可执行exe设置为--开机自动运行程序 选中可执行程序(.exe)==》右键创建快捷方式 使用快捷键,win+r 输入: shell:startup 打开[启动文件夹]之后,将需要设置开机自启动的软件程序的快捷方式放入文件夹 电脑开机或者重启时,该【启动文件夹】下的软件则会自动开启 阅读全文
摘要:
安装迅雷,进行下载 ed2k://|file|cn_sql_server_2012_developer_edition_with_sp1_x64_dvd_1234492.iso|4231520256|C3653494E5E01CA5ADFAF910CBC32D75|/ 阅读全文
摘要:
SELECT @@VERSION AS '版本信息', SERVERPROPERTY('Edition') AS '版本', SERVERPROPERTY('LicenseType') AS '许可类型', SERVERPROPERTY('ProductVersion') AS '产品版本号', S 阅读全文
摘要:
using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Ru 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namesp 阅读全文
摘要:
base64 to pdf 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threadin 阅读全文
摘要:
using System; class Program { static void Main() { Console.WriteLine(AreAnagrams("CCAA", "CAAC")); Console.WriteLine(AreAnagrams("CARE", "RACE")); } s 阅读全文
摘要:
EF的查询效率如何优化?EF(Entity Framework)是一个对象关系映射框架,可以用来简化与数据库交互的代码。在进行查询时,以下是一些优化EF查询效率的方法: 使用延迟加载:EF默认使用延迟加载(Lazy Loading)来获取导航属性的数据。延迟加载可以避免不必要的查询和数据加载,因此可 阅读全文
摘要:
StringHelper--字符串左右添加指定字符 1 using System; 2 using System.Collections.Generic; 3 using System.Configuration; 4 using System.Linq; 5 using System.Text; 阅读全文