Skip to content

Instantly share code, notes, and snippets.

@Hotriden
Created November 12, 2019 15:46
Show Gist options
  • Save Hotriden/0530af32bd5c62b030344ae7597f7185 to your computer and use it in GitHub Desktop.
Save Hotriden/0530af32bd5c62b030344ae7597f7185 to your computer and use it in GitHub Desktop.
public void Method(string word)
{
char[] chart = new char[word.Length];
for(int i=0; i<word.Length; i++)
{
chart[i] = word[i];
for(int j = 0; j < chart.Length; j++)
{
Console.Write(chart[j]);
}
Thread.Sleep(1000);
Console.WriteLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment