using System; public static class ActionExtensions { /// /// Action呼び出し。 /// static public void Call( this Action self ) { if(self != null) { self(); } } }