摘要: 设置Key nuget setApiKey [Your-API-Key] -Source https://www.nuget.org/api/v2/package/ 打包 nuget pack Aliang.Common.Helper.csproj -Prop Configuration=Relea 阅读全文
posted @ 2022-08-14 14:32 码农阿亮 阅读(40) 评论(0) 推荐(0) 编辑
摘要: public class VerifyCodeHelper { /// <summary> /// 传入一个随机字符串,生成一张Bitmap的图片 /// </summary> /// <param name="code"></param> /// <returns></returns> publi 阅读全文
posted @ 2022-08-14 12:17 码农阿亮 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 建立.NetCore项目,双击项目,编辑配置信息 <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <!--项目支持的框架版本--> <TargetFrameworks> net35; net40; net45; net451; net452; ne 阅读全文
posted @ 2022-08-14 00:39 码农阿亮 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1、使用Math.Round方法处理 double a = 3.1415926; //使用四色五入保留2位小数 double b = Math.Round(a,3); Console.WriteLine(b); //输出:3.142 2、使用 decimal.Round方法处理 double a = 阅读全文
posted @ 2022-08-14 00:13 码农阿亮 阅读(9049) 评论(0) 推荐(0) 编辑