这是我的代码上的属性:
public KPage Padre
{
get
{
if (k_oPagina.father != null)
{
this.Padre = new KPage((int)k_oPagina.father);
}
else
{
this.Padre = null;
}
return this.Padre;
}
set { }
}
但它说:
App_Code.rhj3qeaw.dll 中出现“System.StackOverflowException”类型的未处理异常
为什么?我该如何解决?
编辑
更正代码后,这是我的实际代码:
private KPage PadreInterno;
public KPage Padre
{
get
{
if (PadreInterno == null)
{
if (paginaDB.father != null)
{
PadreInterno = new KPage((int)paginaDB.father);
}
else
{
PadreInterno= null;
}
}
return PadreInterno;
}
}
你有什么想法?