I need to create a method of class that delete the instance.
public class Car { private string m_Color; public string Color { get { return m
Use a collection that is a static property of your Car class. Every time you create a new instance of a Car, store the reference in this collection.
Car
To destroy all Cars, just set all items to null.
null