gpt4 book ai didi

C# Action 封装了一个带有签名 void SomeFunc(class arg) 的方法

转载 作者:太空宇宙 更新时间:2023-11-03 14:22:54 25 4
gpt4 key购买 nike

它存在类似于 Action 的东西,但它可以封装带有签名的方法:

void SomeFunc(IDictionary<string,class>), I try solve this:

private void RefreshContactList()
{
var freshFriends = Service.GetAllFriends(Account);

new System.Action(RefreshContactsData(freshFriends)).OnUIThread();
}

private void RefreshContactsData(IEnumerable<KeyValuePair<string, UserInfo>> freshFriends)
{
//...
}

最佳答案

如果我理解正确,你可以使用 generic Action delegate .你可以这样写:

Action<IDictionary> myAction; //with one parameter
Action<IDictionary, int> myAction2; //with two parameters

关于C# Action 封装了一个带有签名 void SomeFunc(class arg) 的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4861115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com