Skip to content

Instantly share code, notes, and snippets.

@baobao
Created February 5, 2017 14:25
Show Gist options
  • Save baobao/c43850a095bb226b26046171dc518e94 to your computer and use it in GitHub Desktop.
Save baobao/c43850a095bb226b26046171dc518e94 to your computer and use it in GitHub Desktop.
var methodInfos = typeof(SampleClass).GetMethods ();
foreach(var method in methodInfos)
{
Debug.Log(method.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment