Puede usar un convertidor de tipos (sin comprobación de errores):
Ship ship = new Ship();
string value = "5.5";
var property = ship.GetType().GetProperty("Latitude");
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);
En términos de organizar el código, podría crear un tipo de mixin que resultaría en un código como este:
Ship ship = new Ship();
ship.SetPropertyAsString("Latitude", "5.5");
Esto se lograría con este código:
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
Se puede reutilizar para muchas clases diferentes.
También puede crear sus propios convertidores de tipos personalizados para adjuntarlos a sus propiedades o clases:
public class Ship : MPropertyAsStringSettable {
public Latitude Latitude { get; set; }
// ...
}
[TypeConverter(typeof(LatitudeConverter))]
public class Latitude { ... }