string[] wordsToOutput = { "Options:", "Change Password - 1", "Change Username - 2", "Logout - 3" };
string outputStr = null;
for( int i = 0; i < wordsToOutput.Length; ++i )
outputStr += wordsToOutput[i] + "\n";
Console.WriteLine(outputStr);
PICHU.
string[] wordsToOutput = { "Options:", "Change Password - 1", "Change Username - 2", "Logout - 3" };
string outputStr = null;
for( int i = 0; i < wordsToOutput.Length; ++i )
outputStr += wordsToOutput[i] + "\n";
Console.WriteLine(outputStr);
, i did clean up my on screen writing a lot xD its very clean now. However i really like goto and i think ill keep using it, thx anyways Master Ro
. I just think that when a programmer is reading a piece of code and sees a goto, he has to go back up and find the specified block. For me it gets really tiring after a while. I just think it makes the code somewhat less readable.
PICHU.
. I just think that when a programmer is reading a piece of code and sees a goto, he has to go back up and find the specified block. For me it gets really tiring after a while. I just think it makes the code somewhat less readable.
PICHU.
Copyright © 2026, NextGenUpdate.
All Rights Reserved.