摘要: 请求钉钉 var obj=""; var token = AccessToken(); if (string.IsNullOrWhiteSpace(token)) { return false; } var client = new RestClient($"https://api.dingtalk 阅读全文
posted @ 2024-02-22 17:25 ITMrRight 阅读(1) 评论(0) 推荐(0) 编辑
摘要: select (select MouldName from mould_Mould where MouldCode=a.MouldCode) MouldName, (select Specs from mould_Mould where MouldCode=a.MouldCode) MouldSpe 阅读全文
posted @ 2023-11-24 16:02 ITMrRight 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 取交集 List 1 : { 1 , 2 , 3 , 5 , 9 }List 2 : { 4 , 3 , 9 } var intersectedList = list1.Intersect(list2).ToList(); 结果 : { 3 , 9 } 取差集 List 1 : { 1 , 2 , 阅读全文
posted @ 2023-10-13 10:43 ITMrRight 阅读(66) 评论(0) 推荐(0) 编辑
摘要: public class ConnectFile { /// <summary> /// 连接远程共享文件夹添加登录凭证 /// 先关闭所有链接:net use * /del /y 不允许一个用户使用一个以上用户名与服务器或共享资源的多重连接 /// </summary> /// <param na 阅读全文
posted @ 2023-06-27 13:57 ITMrRight 阅读(129) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 这是一个测试注释 /// </summary> /// <param name="args">测试</param> static void Main(string[] args) { var method = typeof(Program).GetMethod(" 阅读全文
posted @ 2023-06-21 00:28 ITMrRight 阅读(77) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Net;using System.Net.Sockets;using System.Text; namespace Test1{ using System; using System.Net; using System.Net.Sockets; u 阅读全文
posted @ 2023-06-01 20:53 ITMrRight 阅读(73) 评论(0) 推荐(0) 编辑
摘要: public static void Main(string[] args) { for (float y = 1.5f; y > -1.5f; y -= 0.1f) { for (float x = -1.5f; x < 1.5f; x += 0.05f) { float a = x * x + 阅读全文
posted @ 2021-08-17 17:17 ITMrRight 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1.codeMain 主要格式化代码,和快速搜索 2.power Mode 输入特效 3.ClaudiaIDE 背景 阅读全文
posted @ 2020-12-15 10:19 ITMrRight 阅读(3458) 评论(0) 推荐(0) 编辑
摘要: 例如: {"error_response":{"code":29,"msg":"Invalid app Key","sub_code":"isv.appkey-not-exists","request_id":"7vk7730y2ghu"}} 获取方式 var json1 = JObject.Par 阅读全文
posted @ 2020-12-14 15:44 ITMrRight 阅读(1064) 评论(0) 推荐(0) 编辑
摘要: 1导出 /// <summary> /// 导出推广名单 /// </summary> /// <param name="id">补贴Id</param> /// <param name="page">页码</param> /// <returns></returns> [HttpGet] [Rou 阅读全文
posted @ 2020-12-03 15:27 ITMrRight 阅读(259) 评论(0) 推荐(0) 编辑