In Java I would write something like
public interface ICar {    
    static String RED_CAR = "/res/vehicles/car_red.png";
    static String BLUE_CAR = "/res/vehicles/car_blue.png";
    static String GREEN_CAR = "/res/vehicles/car_green.png";    
}
Because C# doesn't allow using fields in interface, where do I define this constants in C#, when I wish to use them more than once?
 
     
     
    