标签: c# unity3d
这真的让我感到困惑。我在运行时看不到任何区别,但是许多人在实例化或查找对象时使用typeof或as。我真的希望有一些直接的解释。
typeof
as
var example1 = FindObjectsOfType<TheExample>(); var example2 = Object.FindObjectsOfType(typeof(TheExample)) as TheExample[];