I need to do a function that received 3 entiers: horizontal and vertical position of the beginning of the line, as well as its length, and draws the diagonal line descending to the left. I don't understand how i can do the diagonal line. I have done a loop for do a horizontal line but I don't know what i need to change for draw a diagonal line.
For the horizontal line, I have done:
static void LigneHorizontale(int posh, int pov, int longueur)
{
for (int i = 0; i < longueur; i++)
{
Console.SetCursorPosition(posh+i, pov);
Console.WriteLine("-");
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…