码迷,mamicode.com
首页 >  
搜索关键字:summary    ( 3315个结果
LeetCode题解
调整数组顺序使奇数位于偶数前面 /// <summary> /// 首尾双指针法 /// </summary> /// <param name="nums"></param> /// <returns></returns> public int[] HeadTailExchange(int[] nu ...
分类:其他好文   时间:2021-03-11 12:06:51    阅读次数:0
C# 基础 - Json 之间的转换
这里举例两种方式。 1. Newtonsoft.Json.JsonConvert 需要引用外部的 Newtonsoft.Json.dll /// <summary> /// 将json字符串转换为对象(使用Json.net) /// </summary> /// <param name="respo ...
分类:Windows程序   时间:2021-03-04 13:15:20    阅读次数:0
C# Elasticsearch帮助类
ElasticsearchConfig /// <summary> /// ES 连接配置 /// </summary> public class ElasticsearchConfig { /// <summary> /// 节点列表 /// </summary> public IEnumerab ...
分类:Windows程序   时间:2021-03-04 12:55:48    阅读次数:0
新建code review请求
Posted on 2014 年 7 月 19 日 一个code review请求,至少包括”summary”,”description”, 一些”reviewers”。一个code review请求通常包含diff文件,如果code review请求中只有附件,那个这个diff文件就更有用了。 有 ...
分类:其他好文   时间:2021-03-03 12:26:53    阅读次数:0
RegexHelper
using System; using System.Text.RegularExpressions; public partial class RegexEx { /// <summary> /// 验证输入字符串是否与模式字符串匹配,匹配返回true /// </summary> /// <pa ...
分类:其他好文   时间:2021-03-02 11:46:45    阅读次数:0
C# stopwatch记录运行时间
/// <summary> /// 运行时间 /// </summary> [ProtoMember(46)]public long WorkTime; Stopwatch stopwatch = new Stopwatch(); // 记录运行时间stopwatch.Start();。。。// 运 ...
分类:Windows程序   时间:2021-02-27 13:41:02    阅读次数:0
Unity 之 Addressable Asset System 之用工具创建group
代码如下: 1 /// <summary> 2 /// 重置某分组 3 /// </summary> 4 /// <typeparam name="T">资源类型</typeparam> 5 /// <param name="groupName">组名</param> 6 /// <param na ...
分类:编程语言   时间:2021-02-26 13:02:22    阅读次数:0
C#更换桌面壁纸
WallpaperHelper.cs文件: using Microsoft.Win32; using System.IO; using System.Runtime.InteropServices; namespace NPOIDemo { /// <summary> /// 更换壁纸 /// </ ...
分类:Windows程序   时间:2021-02-26 13:00:29    阅读次数:0
SafeList-线程安全的List(c#)
List是线程不安全的,通过一个数组存储数据,当容量达到数组上限时,创建一个新数组,因此存在线程安全问题 SafeList是在做增删改操作时返回一个新的ReadonlyList,所以不存在线程安全问题 /// <summary> /// SafeList is mutable, but it use ...
分类:编程语言   时间:2021-02-20 12:22:14    阅读次数:0
C#8.0+语言新功能试用:在接口中定义静态变量
先上代码: public interface IWorkflowHelper { /// <summary> /// 工作流步骤描述文本颜色 /// </summary> static Color Color = Color.Red; } 使用场景: Colorful.Console.WriteLi ...
分类:编程语言   时间:2021-02-19 13:50:59    阅读次数:0
3315条   上一页 1 ... 3 4 5 6 7 ... 332 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!