Bir tip dönüştürücü kullanabilirsiniz (hata kontrolü yok):
Ship ship = new Ship();
string value = "5.5";
var property = ship.GetType().GetProperty("Latitude");
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);
Kodun düzenlenmesi açısından, aşağıdaki gibi kodla sonuçlanacak bir tür mixin oluşturabilirsiniz:
Ship ship = new Ship();
ship.SetPropertyAsString("Latitude", "5.5");
Bu, şu kodla gerçekleştirilebilir:
public interface MPropertyAsStringSettable { }
public static class PropertyAsStringSettable {
public static void SetPropertyAsString(
this MPropertyAsStringSettable self, string propertyName, string value) {
var property = TypeDescriptor.GetProperties(self)[propertyName];
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);
}
}
public class Ship : MPropertyAsStringSettable {
public double Latitude { get; set; }
// ...
}
MPropertyAsStringSettable
birçok farklı sınıf için tekrar kullanılabilir.
Özelliklerinize veya sınıflarınıza eklemek için kendi özel tür dönüştürücülerinizi de oluşturabilirsiniz :
public class Ship : MPropertyAsStringSettable {
public Latitude Latitude { get; set; }
// ...
}
[TypeConverter(typeof(LatitudeConverter))]
public class Latitude { ... }