私は2つのクラスを持っています:
public class Place
{
public string GoogleReference { get; set; }
public string GoogleID { get; set; }
public string Name { get; set; }
public string Vicinity { get; set; }
}
public class PlaceDetail : Place
{
public string Url { get; set; }
public string InternationalPhoneNumber { get; set; }
public string Website { get; set; }
}
Place を PlaceDetail にキャストする方法は? 次のコードが機能しない
Place place = new Place();
place.Name = "A";
....
PlaceDetail placeDetail = (PlaceDetail)place;
タイプ「PlacesLibrary.Place」のオブジェクトをタイプ「PlacesLibrary.PlaceDetail」にキャストできません。