Skip to content

Instantly share code, notes, and snippets.

@sugi-cho
Created January 19, 2015 08:27
Show Gist options
  • Save sugi-cho/ba0a05b55713de08d4f1 to your computer and use it in GitHub Desktop.
Save sugi-cho/ba0a05b55713de08d4f1 to your computer and use it in GitHub Desktop.
System.Action、デリゲート
using System;
void Test(string t){
Debug.Log(t);
}
void Main(){
Action<string> a = Test;
a("test");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment