あまり使わないので忘れないようにメモ
Dictionary<uint, Process> processDict = new Dictionary<uint, Process>(100);
foreach (KeyValuePair<uint, Process> val in processDiff)
{
Process p = val.Value;
…
}
C#, PowerShell プログラミングの覚書、雑記など
あまり使わないので忘れないようにメモ
Dictionary<uint, Process> processDict = new Dictionary<uint, Process>(100);
foreach (KeyValuePair<uint, Process> val in processDiff)
{
Process p = val.Value;
…
}