码迷,mamicode.com
首页 >  
搜索关键字:salient region detec    ( 2773个结果
Mac安装aws-cli全过程,通过命令行上传文件到aws s3协议服务器
第一次使用aws,首先查询了各种资料,我第一步需要做的是安装aws-cli,而安装aws-cli之前需要安装python3,当然你安装python3之前你还需要安装homebrew,当然我正在安装的过程中还遇到了其他的问题,接下来用一个个步骤来描述安装过程 一、安装homebrew 镜像更换为国内的 ...
分类:Web程序   时间:2020-04-27 19:27:34    阅读次数:111
MD5
/// <summary> /// 不可逆加密 /// 1 防止被篡改 /// 2 防止明文存储 /// 3 防止抵赖,数字签名 /// </summary>using System.Security.Cryptography; public class MD5Encrypt { #region M ...
分类:其他好文   时间:2020-04-25 15:33:37    阅读次数:279
自己写了个截图工具
很简单,就是先全屏截图,然后再按需要裁剪就可以了。 所以,首先要获取桌面的大小,代码如下: public class PrimaryScreen { #region Win32 API [DllImport("user32.dll")] static extern IntPtr GetDC(IntP ...
分类:其他好文   时间:2020-04-23 20:47:37    阅读次数:60
C#获取本地IP地址,内网+外网方法
1 #region 获取内、外网Ip 2 3 /// <summary> 4 /// 获取本地ip地址,优先取内网ip 5 /// </summary> 6 public static String GetLocalIp() 7 { 8 String[] Ips = GetLocalIpAddres ...
分类:Windows程序   时间:2020-04-14 12:34:36    阅读次数:100
过滤sql语句
#Region "过滤sql语句" Public Shared Function denny(ByVal id) As String id = Replace(id, "'", "") id = Replace(id, " and ", "") id = Replace(id, "select ", ...
分类:数据库   时间:2020-04-13 15:22:32    阅读次数:88
C#共用工具类
using System; using System.Text; using System.Text.RegularExpressions; namespace Utilities { /// /// 共用工具类 /// public static class Tools { region 得到字符 ...
分类:Windows程序   时间:2020-04-13 00:30:07    阅读次数:77
Code-Serialization:Xml序列化与Xml反序列化
ylbtech-Code-Serialization:Xml序列化与Xml反序列化 1.返回顶部 1、 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.T ...
分类:其他好文   时间:2020-04-11 18:32:55    阅读次数:60
Code-Convert:Image to base64
ylbtech-Code-Convert:Image to base64 1. C# 返回顶部 1、 #region convert image to base64 public string ImageToBase64(Image image, System.Drawing.Imaging.Ima ...
分类:其他好文   时间:2020-04-11 17:02:40    阅读次数:94
转换 Task<IAsyncEnumerable<T>> 为 IAsyncEnumerable<T>
这么做还是有一些意义的,避免重复处理Task<IAsyncEnumerable>实在是有些复杂,如果代码还要处理IAsyncEnumerable的话尤为如此,将二者统一还是有一定意义的 #region AsAsyncEnumerable public static async IAsyncEnume ...
分类:编程语言   时间:2020-04-11 13:16:45    阅读次数:66
System.Reflection.ParameterInfo.cs
ylbtech-System.Reflection.ParameterInfo.cs 1.返回顶部 1、 #region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Pro ...
分类:其他好文   时间:2020-04-11 10:21:00    阅读次数:62
2773条   上一页 1 ... 13 14 15 16 17 ... 278 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!