Skip to content

Instantly share code, notes, and snippets.

@Hotriden
Created November 12, 2019 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hotriden/3c10522d827e1e6ecb61fabc85ec9fdb to your computer and use it in GitHub Desktop.
Save Hotriden/3c10522d827e1e6ecb61fabc85ec9fdb 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