Click here to Skip to main content
15,881,803 members
Home / Discussions / C#
   

C#

 
Questionstupid question Pin
Tyrus18219-Apr-06 16:04
Tyrus18219-Apr-06 16:04 
AnswerRe: stupid question Pin
Luis Alonso Ramos19-Apr-06 17:09
Luis Alonso Ramos19-Apr-06 17:09 
Questiona Question regarding Image class and Graphics class Pin
Green Fuze19-Apr-06 13:28
Green Fuze19-Apr-06 13:28 
AnswerRe: a Question regarding Image class and Graphics class Pin
Robert Rohde19-Apr-06 22:13
Robert Rohde19-Apr-06 22:13 
Questionchange machine name Pin
shabonaa19-Apr-06 13:12
shabonaa19-Apr-06 13:12 
AnswerRe: change machine name Pin
Shajeel19-Apr-06 20:32
Shajeel19-Apr-06 20:32 
Question3 byte UTF-8 Encoding Pin
eggie519-Apr-06 11:46
eggie519-Apr-06 11:46 
AnswerRe: 3 byte UTF-8 Encoding Pin
Guffa19-Apr-06 12:28
Guffa19-Apr-06 12:28 
What encoding do you use?

If you use UTF8, for instance, most characters are encoded as 8 bits, but the characters that really need 16 bits have to use an extra byte to form an entity that contains 16 bits of data and still is distinguishable from two regular characters.

If you examine the bit pattern of the bytes, it's easy to see how it works.

The binary code for 0x2135 is 0010000100110101. This is divided into three parts: 0010, 000100 and 110101.

By adding 1110 before the first part and 10 before the two other, you get the patterns 11100010, 10000100 and 10110101, which written in hexadecimal are 0xE2, 0x84 and 0xB5.

---
b { font-weight: normal; }

GeneralRe: 3 byte UTF-8 Encoding Pin
eggie521-Apr-06 13:17
eggie521-Apr-06 13:17 
QuestionHow to create array of label ? Pin
dataminers19-Apr-06 11:26
dataminers19-Apr-06 11:26 
AnswerRe: How to create array of label ? Pin
Office Lineman19-Apr-06 13:03
Office Lineman19-Apr-06 13:03 
Questione-mail through Outlook. HOW??? Pin
Vasya - dragon19-Apr-06 11:21
Vasya - dragon19-Apr-06 11:21 
QuestionRemoting: Reference to the Remote Object Instance? (Singleton) Pin
eclipse2k119-Apr-06 11:16
eclipse2k119-Apr-06 11:16 
AnswerRe: Remoting: Reference to the Remote Object Instance? (Singleton) Pin
LongRange.Shooter20-Apr-06 3:52
LongRange.Shooter20-Apr-06 3:52 
QuestionRe: Remoting: Reference to the Remote Object Instance? (Singleton) Pin
eclipse2k120-Apr-06 11:16
eclipse2k120-Apr-06 11:16 
AnswerRe: Remoting: Reference to the Remote Object Instance? (Singleton) Pin
Tim Paaschen20-Apr-06 20:27
Tim Paaschen20-Apr-06 20:27 
JokeRe: Remoting: Reference to the Remote Object Instance? (Singleton) Pin
eclipse2k121-Apr-06 9:59
eclipse2k121-Apr-06 9:59 
GeneralRe: Remoting: Reference to the Remote Object Instance? (Singleton) Pin
Tim Paaschen23-Apr-06 20:54
Tim Paaschen23-Apr-06 20:54 
QuestionNot logging in application log Pin
Dpriya19-Apr-06 11:11
Dpriya19-Apr-06 11:11 
AnswerRe: Not logging in application log Pin
Ricardo Casquete19-Apr-06 23:12
Ricardo Casquete19-Apr-06 23:12 
QuestionNotifyIcon - Changing the icon Pin
eggsovereasy19-Apr-06 11:03
eggsovereasy19-Apr-06 11:03 
AnswerRe: NotifyIcon - Changing the icon Pin
Josh Smith19-Apr-06 12:38
Josh Smith19-Apr-06 12:38 
QuestionSerialization of Parent with Child Objects Pin
sharkbait19-Apr-06 10:29
sharkbait19-Apr-06 10:29 
AnswerRe: Serialization of Parent with Child Objects Pin
Josh Smith19-Apr-06 10:38
Josh Smith19-Apr-06 10:38 
GeneralRe: Serialization of Parent with Child Objects Pin
sharkbait19-Apr-06 10:59
sharkbait19-Apr-06 10:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.