how to create instance in Unity
#1 Create Class Car. using UnityEngine; using System.Co […]...
[转]C# 中 List 用法
List 类是 ArrayList 类的泛型等效类,某些情况下,用它比用数组和 ArrayList 都方便。 […]...
[转]C# []、List、Array、ArrayList 区别及应用
作者:vkvi 来源:千一网络(原创) 是针对特定类型、固定长度的。 List 是针对特定类型、任意长度 […]...
example of virtual function in unity3d with C#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 […]...
[Repaste] C#中override重写与new隐藏的区别
在C#中: override重写,是指对父类中的虚方法(标记为override)或抽象方法(标记为abstra […]...