私はこの次のコードを持っています。新しいキー値を辞書に追加していません....何が問題なのですか??
while(true)
{
TimeSpan t = // some timespan which is updating every second
int value = // some value associated with timespan
Dictionary<TimeSpan,int> _dict = new Dictionary<TimeSpan,int>();
_dict.Add(t,value);
}