04 2022 档案
摘要:using System;using System.Diagnostics;using System.IO;using System.Windows.Forms;using Microsoft.Win32; namespace WindowsFormsApplication1{ public cla
阅读全文
摘要:TRUNC: 有两种:TRUNC(NUMBER)表示截断数字,TRUNC(date)表示截断日期。 1)截断数字: 格式:TRUNC(n1,n2),n1表示被截断的数字,n2表示要截断到那一位。n2可以是负数,表示截断小数点前。注意,TRUNC截断不是四舍五入。 SQL> select TRUNC(
阅读全文
摘要:/// <summary> /// 窗体动画函数 /// </summary> /// <param name="hwnd">指定产生动画的窗口的句柄</param> /// <param name="dwTime">指定动画持续的时间</param> /// <param name="dwFlag
阅读全文
摘要:生成公钥和私钥文件 using System.Security.Cryptography; using System.IO; /// <summary> /// 生成公钥、私钥 /// </summary> /// <param name="PrivateKeyPath">私钥文件保存路径,包含文件
阅读全文
摘要:using System; using System.Collections.Generic; using System.Text; using System.Management; using System.Security.Cryptography; using Microsoft.Win32;
阅读全文
摘要:using System; using System.Collections.Generic; using System.Windows.Forms; using System.Runtime.InteropServices; public class HotKeys { int keyid = 1
阅读全文
摘要:API声明: /// <summary> /// 获取指定窗口的设备场景 /// </summary> /// <param name="hwnd">将获取其设备场景的窗口的句柄。若为0,则要获取整个屏幕的DC</param> /// <returns>指定窗口的设备场景句柄,出错则为0</retu
阅读全文
摘要:通常我们把图片保存到数据库时是以二进制数据(byte[],字节数组 )保存的。 在代码中,我们可以把Image转化为byte[]: private byte[] ImageToByte(Image image) { MemoryStream ms = new MemoryStream(); if (
阅读全文
摘要:REPLACE(char,search_string,replacement_string) 1991' is search_string '2001' is replacement_string REPLACE returns char with every occurrence of searc
阅读全文
摘要:1.translate 与replace类似是替换函数,但translate是一次替换多个单个的字符。 2.基本用法,字符对应替换。例子: select translate('1234567','123' ,'abc') from dual ;--1替换为a,2替换为b,3替换为c结果:abc456
阅读全文
摘要:微软注册表命令说明 建立 bat文件 如 :DelBaidu.bat 写入一下内容 for /f "delims=" %%k in ('reg query HKCR /s /f Baidu /k') do ( reg delete "%%k" /f echo "%%k" ) for /f "deli
阅读全文
摘要:xUnit.Net特点:# 支持多平台/运行时 并行测试 数据驱动测试 可扩展 xUnit支持的平台:# .Net Framework.Net Core.Net StandardUWPXamarin 官网:https://xunit.net 测试工具:# Copy VS自带的测试浏览器(右键测试或者
阅读全文
摘要:C#单元测试相关的开源软件中常用的有 NUnit、 XUnit和MsTest。 MsTest 1) 基本介绍 MSTest是一款由微软公司开发的单元测试框架,它能够很好地被应用在Visual Studio中,并且集成在了Visual Studio单元测试框架中,操作简单,上手容易。 MsTest中核
阅读全文