Im trying to understand Dependency Injection. I have created a sample example for this . Can any one please tell ,is this example correct or not
public interface IEngine
    {
        void Start();
        void SayHelloFromEngine();
    };
    public class Engine :IEngine
    {
        public Engine(){
        }
        public void Start()
        {
            Console.Write ("Hey it is started");
        }
        public void SayHelloFromEngine()
        {
            Console.Write ("Hello from Engine");
        }
    }
    public class Car 
    {
        private readonly IEngine _engine;
        public Car(IEngine engine){
            _engine=engine;
            _engine.SayHelloFromEngine ();
        }
    }
and my object creation would be
Car car2 = new Car (new Engine ());
Please guide me on what steps i'm doing wrong.
 
     
     
     
    