using LiveCharts;//livecharts.netusing LiveCharts.Wpf;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.T ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using UFIDA.U9.WK.PurchasePullChangeUIModel; using System.Data; ...
分类:
其他好文 时间:
2020-04-24 14:43:31
阅读次数:
77
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp4 { using System; using System.Collections.Generic; using Syste ...
分类:
其他好文 时间:
2020-04-23 21:24:08
阅读次数:
60
上一章记录了创建一个Nancy框架的WebApi接口,这一章就在这个接口Demo上继续添加签名安全认证,保证接口的数据请求安全 一:创建一个MD5加密类,按照自己的加密方式来写 using System; using System.Collections.Generic; using System. ...
``` using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LINQTest { class Pro... ...
分类:
其他好文 时间:
2020-04-21 15:27:57
阅读次数:
74
[toc] 内容概要 Django基于channels实现群聊功能 首先配置channels三步走 后端方法 连接时触发 前端发送消息时触发 断开连接时触发 routing.py文件 consumers.py文件 前端方法 onopen 环节成功之后自动触发 send 发送数据 onmessage ...
分类:
其他好文 时间:
2020-04-19 22:12:54
阅读次数:
74
1、在Application_Start第一行加 GlobalFilters.Filters.Add(new JsonNetActionFilter()); 2、JsonNetActionFilter using System; using System.Collections.Generic; u ...
分类:
Web程序 时间:
2020-04-19 10:35:04
阅读次数:
90
使用TCD.System.TouchInjection.dll using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using Sy ...
1. 泛型Generic 1.1 引入泛型:延迟声明 泛型方法声明时,并未写死类型,在调用的时候再指定类型。 延迟声明:推迟一切可以推迟的。 1.2 如何声明和使用泛型 泛型方法:方法名称后面加上尖括号,里面是类型参数 类型参数实际上就是一个类型T声明,方法就可以用这个类型T了。 如下所示: pub ...
分类:
Web程序 时间:
2020-04-18 09:37:05
阅读次数:
57
我们用unity项目生成xcode工程后,我们自己可以做一些xcode的配置工作,比如资源拷贝、引用系统库、修改bulid setting信息等。 然后需要注意的是这个C#文件需要放到Editor目录下面,不然那会报错 using System.Collections; using System.C ...
分类:
移动开发 时间:
2020-04-17 15:20:53
阅读次数:
134