Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
836 views
in Technique[技术] by (71.8m points)

c# - Dictionary<TKey, TValue>.ForEach method

I wanna declare new extension method which similar to List.ForEach Method.

What I wanna archive:

var dict = new Dictionary<string, string>()
{
   { "K1", "V1" },
   { "K2", "V2" },
   { "K3", "V3" },
};


dict.ForEach((x, y) => 
{
   Console.WriteLine($"(Key: {x}, value: {y})");
});

How can I do that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can write an extension method easily:

public static class LinqExtensions
{
    public static void ForEach<TKey, TValue>(this Dictionary<TKey, TValue> dictionary, Action<TKey, TValue> invoke)
    {
        foreach(var kvp in dictionary)
            invoke(kvp.Key, kvp.Value);
    }
}

Using like this:

dict.ForEach((x, y) => 
{
   Console.WriteLine($"(Key: {x}, value: {y})");
});

Produces

Key: K1, value: V1
Key: K2, value: V2
Key: K3, value: V3

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...