Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Unicode Braille Patterns.
//Unicode Braille Patterns. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { Console.WriteLine("Basic (6 Dots)"); for (int i = 0x1; i <= 0x40; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } Console.WriteLine("\nExtended (8 Dots)"); for (int i = 0x41; i <= 0x100; i++) { Console.Write((char)(0x2800 + i - 1)); if (i % 0x10 == 0) { Console.WriteLine(); } } } } }
run
|
edit
|
history
|
help
1
Please
log in
to post a comment.
enums with extension method: better
p1
Enemy Spawner
ss
multiplo de 500
Generics basics
ObjectPool
DAY !
First Program
Coding Club 1-16-18
Please log in to post a comment.