Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# center text


string s = "Hello|World";
Console.SetCursorPosition((Console.WindowWidth - s.Length) / 2, Console.CursorTop);
Console.WriteLine(s);

Source by devarama.com #
 
PREVIOUS NEXT
Tagged: #center #text
ADD COMMENT
Topic
Name
3+5 =