定义新的Dictionary成员方法C#

时间:2016-06-04 10:49:12

标签: c# dictionary methods return keyvaluepair

我想为Dictionary定义一个新的成员方法,因为它已经在成员方法中构建,例如 while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC) ) { $GamPlay = $row['GamesPlayed']; if(!in_array($GamPlay, $GamesPlayedArray)) { array_push($GamesPlayedArray,$GamPlay); $date = $row['Datetime']; $date = $date->format('Y-m-d H:i:s'); $currentdate = strtotime("now"); $timesince = $currentdate - strtotime($date); if($timesince<86400) { $hourssince = round($timesince/3600); array_push($ListGamesArray,$hourssince . " Hours Ago",$row['UniqueNum']); } else { $jahf = $timesince/86400; $dayssince = floor($jahf); $hourssince = round(($jahf-$dayssince)*24); array_push($ListGamesArray,$dayssince . " Days " . $hourssince . " Hours Ago",$row['UniqueNum']); } } }` Add()Clear()

新添加的成员方法应该以Set的形式返回所有keyvaluepair,因为我们可以将map.entrySet()返回到Java中的Set。

是否可以覆盖现有的字典方法来实现此目的?

3 个答案:

答案 0 :(得分:2)

您可以创建一个扩展方法:

using System;
using System.Collections.Generic;
using System.Linq;

public static class DictionaryExtensions {
    public static HashSet<KeyValuePair<TKey, TValue>> ToSet<TKey, TValue>(this Dictionary<TKey, TValue> dict) {
        return new HashSet<KeyValuePair<TKey, TValue>>(dict.ToList());
    }
} 

有关扩展方法的信息:https://msdn.microsoft.com/en-us/library/bb383977(v=vs.110).aspx

答案 1 :(得分:0)

我知道它不是一个集合,但是通过使用Linq,您可以得到一个键值对列表,如下所示:

Dictionary<string, string> dictionary = new Dictionary<string, string>();
List<KeyValuePair<string, string>> keyValuePairs = dictionary.ToList();

答案 2 :(得分:0)

万一它有帮助,你可以像这样访问字典的KeyValue对:

// Example dictionary
var dic = new Dictionary<int, string>{{1, "a"}};

foreach (var item in dic)
{
    Console.WriteLine(string.Format("key : {0}, Value : {1}", item.Key, item.Value));
}