0

我有一个方法:

public void MyMethod(params KeyValuePair<string, string>[] properties);

我像这样调用:

MyMethod(
    new KeyValuePair("Name","Jack"), 
    new KeyValuePair("City", "New York"), 
    new KeyValuePair("Gender", "Male"), 
);

我更喜欢更漂亮的语法来调用该方法,类似于:

MyMethod({"Name","Jack"}, {"City","New York"}, {"Gender","Male"});

我最接近的方法是使用更改方法签名以接受字典作为方法参数并调用:

MyMethod(new Dictionary<string,string>()
{
    {"Name", "Jack"},
    {"City", "New York"},
    {"Gender", "Male"},
};

还有其他选择吗?

4

2 回答 2

0

另一种选择是使用二维数组

static void PrintArray(int[,] arr)

PrintArray(new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } });

但我更喜欢字典方法

于 2013-06-09T08:03:31.603 回答
0

您可以只接受字符串作为参数,然后像这样动态填充字典。

public void MyMethod(params string[] properties) 
{
    var pairs = new Dictionary<string, string>();

    for(int i = 0; i < properties.length - 1; i += 2) 
    {
        pairs.Add(properties[i], properties[i + 1]);
    }
}

MyMethod("Name", "Jack", "City", "New York", "Gender", "Male");
于 2013-06-09T07:59:14.023 回答