Click here to Skip to main content
15,900,973 members
Home / Discussions / C#
   

C#

 
Questiondelete operation in datagrid Pin
rajaaa19-Apr-06 23:21
rajaaa19-Apr-06 23:21 
AnswerRe: delete operation in datagrid Pin
Mamphekgo20-Apr-06 3:19
Mamphekgo20-Apr-06 3:19 
QuestionUsing an Object as a Parameter Pin
__makaveli__19-Apr-06 22:56
__makaveli__19-Apr-06 22:56 
AnswerRe: Using an Object as a Parameter Pin
Le centriste20-Apr-06 7:08
Le centriste20-Apr-06 7:08 
GeneralRe: Using an Object as a Parameter Pin
__makaveli__20-Apr-06 21:50
__makaveli__20-Apr-06 21:50 
Questionhow to implements the WEBTV Pin
ranandbe19-Apr-06 21:29
ranandbe19-Apr-06 21:29 
AnswerRe: how to implements the WEBTV Pin
LongRange.Shooter20-Apr-06 3:43
LongRange.Shooter20-Apr-06 3:43 
AnswerRe: Want to Record Messenger Conversation Pin
LongRange.Shooter20-Apr-06 3:44
LongRange.Shooter20-Apr-06 3:44 
QuestionHow to get process ID by instance ID? Pin
Old Gun19-Apr-06 21:00
Old Gun19-Apr-06 21:00 
QuestionSocket Pin
Shajeel19-Apr-06 20:20
Shajeel19-Apr-06 20:20 
AnswerRe: Socket Pin
Joshua Nussbaum20-Apr-06 14:13
Joshua Nussbaum20-Apr-06 14:13 
Questiona small doubt about dataconversion Pin
jith - iii19-Apr-06 19:46
jith - iii19-Apr-06 19:46 
AnswerRe: a small doubt about dataconversion Pin
Robert Rohde19-Apr-06 22:22
Robert Rohde19-Apr-06 22:22 
QuestionReset record number of a crystal report at the page break Pin
q2sampath19-Apr-06 18:28
q2sampath19-Apr-06 18:28 
AnswerRe: Reset record number of a crystal report at the page break Pin
Sk8tzz19-Apr-06 19:03
Sk8tzz19-Apr-06 19:03 
QuestionRe: Reset record number of a crystal report at the page break Pin
q2sampath20-Apr-06 1:15
q2sampath20-Apr-06 1:15 
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 

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.