public class Car
{
public string Color { get; set; }
public string Model { get; set; }
}
我如何从变量中调用“Car.Color”或“Car.Model”?
前任。
string MyVariable = "Color";
MyListBox.Items.Add(Car.Model); //It Works Ok
MyListBox.Items.Add(Car.MyVariable); // How??
问候。