码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
自定义修改Unity脚本模板
在Unity Editor中Create C# script后,会自动生成初始化脚本: 1 using System.Collections; 2 using System.Collections.Generic; 3 using UnityEngine; 4 5 public class Scri ...
分类:编程语言   时间:2020-02-02 13:55:22    阅读次数:115
网络异步实现客户端
之前学习的客户端当然可以实现基本的功能,只是会出现卡顿的现象,用户的体验并不是很好,我们现在用异步实现这样的功能 具体完整的代码: using System.Collections; using System.Collections.Generic; using UnityEngine; using ...
分类:其他好文   时间:2020-02-01 21:03:37    阅读次数:63
.NetCore3.1读取一个文件夹下面的所有文件资源并重新命名以及大批量更新及写入数据
using Microsoft.AspNetCore.Mvc; using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Diagnostics; using System.L ...
分类:Web程序   时间:2020-02-01 14:33:12    阅读次数:809
虚拟化技术xen的简介和安装
虚拟化技术的分类: 1,模拟:Emulation ? Qemu,PearPC,Bochs 2,完全虚拟化:Full Virtualization,Native Virtualization ? HVM:hardware virtualization machine ? vmware workstat ...
分类:其他好文   时间:2020-02-01 10:53:37    阅读次数:71
ASP.NET Core下Ocelot的简单使用
一、创建demo项目 1.新建webapi项目,命名为“DemoProject”,去掉HTTPS勾选 1 using Microsoft.AspNetCore.Mvc; 2 using System.Collections.Generic; 3 4 namespace DemoProject.Con ...
分类:Web程序   时间:2020-01-31 18:51:47    阅读次数:230
【Unity|C#】基础篇(10)——泛型(Generic)/ 泛型约束条件(where)
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:编程语言   时间:2020-01-31 01:09:47    阅读次数:241
C# Excl(IO流)
IO流 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.IO; using System.Text; namesp ...
分类:Windows程序   时间:2020-01-30 20:53:25    阅读次数:89
Caused by: java.lang.NoClassDefFoundError: org/apache/commons/pool2/impl/GenericObjectPoolConfig
添加下面依赖就可以了 参考 原文:https://blog.csdn.net/panyuxin_/article/details/81568961 ...
分类:编程语言   时间:2020-01-30 19:17:09    阅读次数:103
[A*寻路]
<1>效果 白色:可行走 红色:阻碍 蓝色:起点周围的格子 绿色:路径 <2>代码 using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Diagnostics; usi ...
分类:其他好文   时间:2020-01-30 18:58:25    阅读次数:62
asp.net core 3.1 webapi 接口设计备忘
using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; using System.T ...
分类:Windows程序   时间:2020-01-29 21:20:26    阅读次数:128
7184条   上一页 1 ... 35 36 37 38 39 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!