public static class DescriptionUtil { /// <summary> /// 获得枚举的Description /// </summary> /// <param name="value">枚举值</param> /// <param name="nameInste ...
分类:
其他好文 时间:
2021-03-18 14:08:16
阅读次数:
0
正则表达式验证double类型的数字: public class ValidateRegexs { /// <summary> /// 文本验证,[匹配数字],正则表达式 /// 涵盖:整数、小数、正负数,最大9位 /// </summary> public static string Textbo ...
/// <summary> /// 日期格式 2019-04 /// </summary> public const string DATE_MONTH_FORMAT = "yyyy-MM"; /// <summary> /// 日期格式 2019-04-25 /// </summary> publ ...
分类:
其他好文 时间:
2021-03-15 10:39:21
阅读次数:
0
调整数组顺序使奇数位于偶数前面 /// <summary> /// 首尾双指针法 /// </summary> /// <param name="nums"></param> /// <returns></returns> public int[] HeadTailExchange(int[] nu ...
分类:
其他好文 时间:
2021-03-11 12:06:51
阅读次数:
0
这里举例两种方式。 1. Newtonsoft.Json.JsonConvert 需要引用外部的 Newtonsoft.Json.dll /// <summary> /// 将json字符串转换为对象(使用Json.net) /// </summary> /// <param name="respo ...
ElasticsearchConfig /// <summary> /// ES 连接配置 /// </summary> public class ElasticsearchConfig { /// <summary> /// 节点列表 /// </summary> public IEnumerab ...
Posted on 2014 年 7 月 19 日 一个code review请求,至少包括”summary”,”description”, 一些”reviewers”。一个code review请求通常包含diff文件,如果code review请求中只有附件,那个这个diff文件就更有用了。 有 ...
分类:
其他好文 时间:
2021-03-03 12:26:53
阅读次数:
0
using System; using System.Text.RegularExpressions; public partial class RegexEx { /// <summary> /// 验证输入字符串是否与模式字符串匹配,匹配返回true /// </summary> /// <pa ...
分类:
其他好文 时间:
2021-03-02 11:46:45
阅读次数:
0
/// <summary> /// 运行时间 /// </summary> [ProtoMember(46)]public long WorkTime; Stopwatch stopwatch = new Stopwatch(); // 记录运行时间stopwatch.Start();。。。// 运 ...
代码如下: 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