我有以下情况:
private void RequestInfo(string a, string b)
{
var c = a+b;
library.FetchInfo(c, OnInfoReceived);
}
private void OnInfoReceived(CustomParameterType object)
{
dictionaryOfInfo.Add(c, object);
}
正如您所看到的,我的问题是我无法在作为FetchInfo函数的参数传递的回调中访问变量“c”。
答案 0 :(得分:2)
在C#3.0及更高版本中,您可以像这样使用lambda expression:
private void RequestInfo(string a, string b)
{
var c = a+b;
library.FetchInfo(c, obj => dictionaryOfInfo.Add(c, obj));
}