Você pode usar um conversor de tipos (sem verificação de erros):
Ship ship = new Ship();
string value = "5.5";
var property = ship.GetType().GetProperty("Latitude");
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);
Em termos de organização do código, você pode criar um tipo de mixin que resultaria em código como este:
Ship ship = new Ship();
ship.SetPropertyAsString("Latitude", "5.5");
Isso seria alcançado com 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
pode ser reutilizado para muitas classes diferentes.
Você também pode criar seus próprios conversores de tipo personalizado para anexar às suas propriedades ou classes:
public class Ship : MPropertyAsStringSettable {
public Latitude Latitude { get; set; }
// ...
}
[TypeConverter(typeof(LatitudeConverter))]
public class Latitude { ... }