Ich würde gerne wissen, ob es möglich ist, so etwas zu tun:
class brand
{
string name;
}
class car
{
string carname;
brand carbrand;
}
Jetzt habe ich einen String wie diesen und ein instanziiertes Objekt vom Typ Auto:
car carobject = new car();
string brandNameOfCar = DoSomeMagicalReflectionStuff(car, "car.brand.name");
Wie würde die Methode "DoSomeMagicalReflectionStuff" aussehen?
Und ist es überhaupt möglich, so etwas zu tun:
car carobject = new car();
string brandNameOfCar = DoSomeMagicalReflectionStuff(car, "car.brand.name.ToFormatedString()");
Ich danke Ihnen!