是否有适当的集合或算法允许我使用复合键获取值,在查询部分键时可能为 null 以表示匹配任何值?
例如,如果我有课程:
class Key
{
string p1{ get; }
string p2{ get; }
string p3{ get; }
public Key(string p1, string p2 , string p3)
{ this.p1 = p1; this.p2 = p2; this.p3=p3; }
}
如果我然后创建了三个键,例如
new Key( "a","b","c")
new Key( "d","b","c")
new Key( "e","f","c")
我想要一个没有迭代的集合或算法以允许以下键
new Key( null, "b","c") to return the values mapped to the first two keys,
new key( null,null,"c") to return the values mapped to all of the keys.
有没有办法做到这一点?