I have a class called BaseRobot
:
var robot2 = new BaseRobot(0, 0, 0);
private Point mHome;
public Point Home
{
get { return mHome; }
}
That is where the original home is created, I am wanting to create a new home in the program.cs
. I have the following code but it does not work, it is coming up with an error saying
Cannot modify the return value becasue it is not a variable.
Code:
robot2.Home.X = 1
robot2.Home.Y = 5;
{
Console.WriteLine("===New robot at specified home position===");
StringBuilder ab = new StringBuilder();
ab.AppendFormat("Robot#2 has home at <{0},{0}>.
", robot2.Home.X, robot2.Home.Y);
ab.AppendFormat("It is facing {0} ", robot2.Orientation);
ab.AppendFormat("and is currently at <{0},{0}>.
", robot2.Position.X, robot2.Position.Y);
Console.WriteLine(ab.ToString());
}
How do you assign new values to x and Y?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…