アクセサーから新しいインスタンスを返す際に問題はありますか? もしそうなら、より良いアプローチはありますか?
public class Person
{
private RecIpDet _ipDet;
public RecIpDet IpDet
{
get
{
if(_ipDet == null)
_ipDet = new RecIpDet();
return _ipDet;
}
}
}