摘要: 为什么数组索引从0开始 由于历史原因C语言的数组索引从0开始,而这个索引其实是表示内存相对于起始地址的偏移 通过偏移量获取 int[] someArray = new int[5] { 1, 2, 3, 4, 5 }; int lastElement = someArray[someArray.Le 阅读全文
posted @ 2022-07-19 14:33 东百牧码人 阅读(4102) 评论(0) 推荐(1)
摘要: 依赖注入 using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; IHost host = Host. 阅读全文
posted @ 2022-07-19 13:59 东百牧码人 阅读(72) 评论(0) 推荐(0)
摘要: new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds(); 阅读全文
posted @ 2022-07-19 13:45 东百牧码人 阅读(450) 评论(0) 推荐(0)