我正在创建一个字典,然后用main()中的条目填充它,然后调用一个使用所述字典的方法.如果在传递给此方法的参数中包含字典,如何在不收到错误的情况下访问它?非静态字段,方法或属性’XXX.YYY.dict’需要对象引用?
编辑:这是代码请求:
public static void Main() { ulong board = AS | KH | FD | FC | TH | SH | NC; Dictionary<ulong,int> dict; dict = new Dictionary<ulong,int>(); for (int a = 0; a < 49344; a++) { dict.Add(helloworld.Table.handhashes[a],helloworld.Table.ratings[a]); } int hand = 0; for (int ai1 = 0; ai1 < 100000000; ai1++) { hand = FCheck(board); } }
在FCheck中发生错误,以下行:
FCheck = dict(condensedBoard);