「Unity/Csharp/Action」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==Actionサンプル== <pre> System.Action<string> OnMsg = delegate (string msg) { }; OnMsg += (msg) => { Debug.Log("msg1:" + msg); }; OnMsg("hello"); </pre>」) |
(相違点なし)
|
2022年10月29日 (土) 02:25時点における版
Actionサンプル
System.Action<string> OnMsg = delegate (string msg) { }; OnMsg += (msg) => { Debug.Log("msg1:" + msg); }; OnMsg("hello");