Run Code
|
API
|
Code Wall
|
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
SimpleHelloworldProgram
Passing Multidimensional Arrays As Arguments
Pascal Tringle
Pet Name Generator
Ejemplos polimorfismos con interfaces y posibles usos sencillos c#
megha
matching parenthesis
12
Problem 5 SingleDigit
const