ConcurrentDictionary を out パラメータを使用して別のメソッドに渡す際に問題に直面しています。
メインメソッドでは、
Method1(1,2,dictionary);
public override int Method1(int x,int y, out ConcurrentDictionary<string,int> dictionary)
{
if(dictionary.IsEmpty)
{
do something
}
}
私が得たエラーメッセージは、「割り当てられていないパラメーター辞書の使用」です。そして、コード全体で辞書の内容を保持する必要があります。助けてくれてありがとう。