摘要:
请求钉钉 var obj=""; var token = AccessToken(); if (string.IsNullOrWhiteSpace(token)) { return false; } var client = new RestClient($"https://api.dingtalk 阅读全文
摘要:
select (select MouldName from mould_Mould where MouldCode=a.MouldCode) MouldName, (select Specs from mould_Mould where MouldCode=a.MouldCode) MouldSpe 阅读全文
摘要:
取交集 List 1 : { 1 , 2 , 3 , 5 , 9 }List 2 : { 4 , 3 , 9 } var intersectedList = list1.Intersect(list2).ToList(); 结果 : { 3 , 9 } 取差集 List 1 : { 1 , 2 , 阅读全文
摘要:
public class ConnectFile { /// <summary> /// 连接远程共享文件夹添加登录凭证 /// 先关闭所有链接:net use * /del /y 不允许一个用户使用一个以上用户名与服务器或共享资源的多重连接 /// </summary> /// <param na 阅读全文
摘要:
/// <summary> /// 这是一个测试注释 /// </summary> /// <param name="args">测试</param> static void Main(string[] args) { var method = typeof(Program).GetMethod(" 阅读全文
摘要:
using System;using System.Net;using System.Net.Sockets;using System.Text; namespace Test1{ using System; using System.Net; using System.Net.Sockets; u 阅读全文
摘要:
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 + 阅读全文
摘要:
1.codeMain 主要格式化代码,和快速搜索 2.power Mode 输入特效 3.ClaudiaIDE 背景 阅读全文
摘要:
例如: {"error_response":{"code":29,"msg":"Invalid app Key","sub_code":"isv.appkey-not-exists","request_id":"7vk7730y2ghu"}} 获取方式 var json1 = JObject.Par 阅读全文
摘要:
1导出 /// <summary> /// 导出推广名单 /// </summary> /// <param name="id">补贴Id</param> /// <param name="page">页码</param> /// <returns></returns> [HttpGet] [Rou 阅读全文