.Net Core - 如何检测应用程序是否正在运行?

时间:2017-08-04 19:03:02

标签: c# .net .net-core

我曾经在.net:

中检测一个应用程序是否使用此方法运行
public struct Position
{            
    public double X { get; set; } 
    public double Y { get; set; }
}
public class Car
{
    public bool IsEnabled { get; set; }
    public Position Position { get; private set; }
    public bool IsInMotion { get; set; }
    public void MoveCar(Position position)
    {
        if (IsEnabled && !IsInMotion)
        {
            Position = position;
        }
    }
}

class CarSimulator
{
    List<Car> cars = new List<Car>(); // populate it
    void MoveAllCars()
    {
        foreach (var car in cars)
        {
            car.MoveCar(GetPosition());
        }
    }
}

但是.Net Core没有Process类。 那么你怎么能做同样的事情呢?还有某种类似于.Net Core中的Process的类吗?

0 个答案:

没有答案