Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パラメータ化されたメソッド配列またはメソッドリストを宣言したい。これは、メソッド配列が存在し、配列のインデックスを使用してメソッドを呼び出すことができると同時に、メソッドにパラメーターを指定することを意味します。どうやってやるの?
メソッドシグネチャがわかっている場合は、次のように実行できます。
を取り込んで:intを返すメソッドの例を使用します。string
int
string
var functionList = new List<Func<int, string>>(); functionlist.Add(SomeMethod) functionlist[0](12345); //call the function //Assuming you had this: public string SomeMethod(int val) { ...