facebook twitter hatena line email

「Unity/Csharp/Action」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Actionサンプル== <pre> System.Action<string> OnMsg = delegate (string msg) { }; OnMsg += (msg) => { Debug.Log("msg1:" + msg); }; OnMsg("hello"); </pre>」)
 
行1: 行1:
 +
==Actionとは==
 +
関数を変数にできるもの
 +
 
==Actionサンプル==
 
==Actionサンプル==
 
<pre>
 
<pre>

2022年10月29日 (土) 02:43時点における版

Actionとは

関数を変数にできるもの

Actionサンプル

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