屬性我不知道正確的技術術語來描述我的問題,所以我舉一個例子:揭露類訪問
private Point _PrivateVect = new Point();
public Point Publicvect
{
get
{
return _PrivateVect;
}
set
{
_PrivateVect = value;
}
}
的問題是,如果我想訪問Publicvect.X
我得到的錯誤Cannot modify the return value of 'Publicvect' because it is not a variable
。有沒有解決的辦法?或者我只需要永遠做Publicvect = new Point(NewX, Publicvect.Y);
?
請顯示產生該錯誤的代碼。 – 2010-07-31 07:08:30
@Bob:如果你認爲大膽的幫助,它沒有。我需要看到實際的代碼行和實際的錯誤。 – 2010-07-31 07:19:33