
C#
bidisty
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
微信支付v3签名在.net6中的应用
在.net6中的微信支付v3签名和请求API的一些注意事项原创 2021-12-23 15:58:41 · 616 阅读 · 0 评论 -
如何快速分隔字体串
可以使用正则: public static IEnumerable<string> StrSplit(this string Str, int num = 2) => Regex.Matches(Str, $"\\w{{{num}}}").Cast<Match>().Select(s => s.Value);原创 2021-10-13 14:13:50 · 132 阅读 · 0 评论 -
10进制和26进制互转
static double 二十六to十(string s) { char[] c = s.ToCharArray(); int c_len = c.Length; double cont = 0; for (int x = 0; x < c.Length; x++)原创 2013-05-12 13:04:47 · 980 阅读 · 0 评论