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");