คุณสามารถใช้ตัวแปลงชนิด (ไม่มีการตรวจสอบข้อผิดพลาด):
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 { ... }