facebook twitter hatena line email

Unity/Csharp/Action

提供: 初心者エンジニアの簡易メモ
2022年10月29日 (土) 02:43時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

Actionとは

関数を変数にできるもの

Actionサンプル

System.Action<string> OnMsg = delegate (string msg) { };
OnMsg += (msg) =>
{
    Debug.Log("msg1:" + msg);
};
OnMsg("hello");