Skip to content

Instantly share code, notes, and snippets.

@onionmk2
Last active February 12, 2017 14:23
Show Gist options
  • Save onionmk2/185525889239f4d96a37208ace0ea022 to your computer and use it in GitHub Desktop.
Save onionmk2/185525889239f4d96a37208ace0ea022 to your computer and use it in GitHub Desktop.

c# には System.Type というクラスがある。

System.Typeの用途

リフレクション(メタプロ)には、このSystem.Typeが必要、らしい。
例えば、unityの[RequireComponent(A)] のAはSystem.Typeである必要がある。

System.Typeのとりかた

typeof演算子を使う。

typeof( Myclass )   

リンク

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment