タイプコンバーターを使用できます(エラーチェックなし)。
Ship ship = new Ship();
string value = "5.5";
var property = ship.GetType().GetProperty("Latitude");
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);
コードを整理するという点では、次のようなコードになるようなミックスインを作成できます。
Ship ship = new Ship();
ship.SetPropertyAsString("Latitude", "5.5");
これは次のコードで実現できます。
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
多くの異なるクラスで再利用できます。
独自のカスタムタイプコンバーターを作成して、プロパティまたはクラスにアタッチすることもできます。
public class Ship : MPropertyAsStringSettable {
public Latitude Latitude { get; set; }
// ...
}
[TypeConverter(typeof(LatitudeConverter))]
public class Latitude { ... }