C# Character Escape Sequences

\' – single quote, needed for character literals \" – double quote, needed for string literals \\ – backslash \0 – Unicode character 0 \a – Alert (character 7) \b – Backspace (character 8) \f – Form feed (character 12) \n – New line (character 10) \r – Carriage return (character 13) \t – Horizontal […]

ToLowerInvariant() and ToUpperInvariant()

According to business rule all footballer name and surname must be capitalized and not longer than 8 chars length. Very simple to develop. We develop a wrapper method for this job. Seems working fine. Until this morning. Game masters of the http://icanfootball.com noticed that some player names violates this business rule. After my first debuging […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top