C#语言
程序员小胖
这个作者很懒,什么都没留下…
展开
-
总结三
/// <summary> /// ref\out的使用方法 /// ref的重点是把值传递给方法,out则是得到调用方法的值,类似于有返回类型的方法的返回值 /// ref变量在使用前,声明同时要进行赋初始值 a=20; /// 使用引用ref、out必须在方法的声明和调用中都使用ref、out关键字 /// 引用可以改变实参的大小,值...原创 2019-12-30 16:45:55 · 122 阅读 · 0 评论 -
协程
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Threading; public class ThreadTest : MonoBehaviour { // Start is called before the first ...原创 2019-12-27 16:57:51 · 97 阅读 · 0 评论 -
总结2
/// <summary> /// C#中"?","?:","??",“?.”的用法 /// </summary> /// class Point { int x; int y; public Point() { } public Point(int x, in...原创 2019-12-26 17:00:32 · 95 阅读 · 0 评论 -
总结
/// <summary> /// 4.序列化与反序列化:在检视面板中可以看到的,就是被成功序列化的参数,与序列化相关的常用的关键字SerializeField,HideInInspector,NonSerialized,Serializable /// 可以组合起来使用。。。注意:const,static不能被序列化 /// (1)SerializeFi...原创 2019-12-25 20:03:48 · 139 阅读 · 0 评论