facebook twitter hatena line email

Unity/Csharp/Action

提供: 初心者エンジニアの簡易メモ
2022年10月29日 (土) 02:25時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==Actionサンプル== <pre> System.Action<string> OnMsg = delegate (string msg) { }; OnMsg += (msg) => { Debug.Log("msg1:" + msg); }; OnMsg("hello"); </pre>」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

Actionサンプル

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