在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
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
虚拟化技术的分类: 1,模拟:Emulation ? Qemu,PearPC,Bochs 2,完全虚拟化:Full Virtualization,Native Virtualization ? HVM:hardware virtualization machine ? vmware workstat ...
分类:
其他好文 时间:
2020-02-01 10:53:37
阅读次数:
71
一、创建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
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-31 01:09:47
阅读次数:
241
IO流 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.IO; using System.Text; namesp ...
添加下面依赖就可以了 参考 原文:https://blog.csdn.net/panyuxin_/article/details/81568961 ...
分类:
编程语言 时间:
2020-01-30 19:17:09
阅读次数:
103
<1>效果 白色:可行走 红色:阻碍 蓝色:起点周围的格子 绿色:路径 <2>代码 using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Diagnostics; usi ...
分类:
其他好文 时间:
2020-01-30 18:58:25
阅读次数:
62
using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; using System.T ...