wasSharpNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 3  →  ?path2? @ 11
/Process.cs
@@ -24,7 +24,7 @@
{
using (var cnt = new PerformanceCounter("Process", "ID Process", instance, true))
{
var val = (int) cnt.RawValue;
var val = (int)cnt.RawValue;
if (val == proc.Id)
{
return instance;
@@ -34,4 +34,4 @@
return null;
}
}
}
}