Assignment3Advanced.TrafficLight.TrafficLight C# (CSharp) Method

TrafficLight() public method

public TrafficLight ( ) : System
return System
    public TrafficLight()
    {
      color = Color.Green;
      toNextLight = new Timer(FromGreenToYellow, 6.0f);
    }