在我的C#代碼中,我有一個包含屬性和函數的類。現在,我想讓我的函數GetCar返回具有值的類類型的對象。如何從C#中的類self返回類的對象?
我在我的代碼中有錯誤,但找不到它。
public class Car
{
public int CarHouseID { set; get; }
public int CarsInHouse{ set; get; }
public int CarSold { set; get; }
public Car GetCar()
{
return Car;
}
}
這不是很明智的代碼。而不是obj.GetCar(),你只需使用obj。 –
你想調用構造函數嗎?例如'汽車=新車();'。 –
所以你有一個_Car實例= new Car()_並且你想調用_Car newInstance = instance.GetCar(); _這沒什麼意義。 – Steve