Click here to Skip to main content
15,920,503 members
Home / Discussions / C#
   

C#

 
AnswerRe: NameValue Pair to ListView Pin
N a v a n e e t h20-Jan-09 18:05
N a v a n e e t h20-Jan-09 18:05 
AnswerRe: NameValue Pair to ListView Pin
Ben Fair21-Jan-09 2:45
Ben Fair21-Jan-09 2:45 
QuestionC# code for retreiving datas from SQl server management studio express Pin
remyajith20-Jan-09 17:38
remyajith20-Jan-09 17:38 
AnswerRe: C# code for retreiving datas from SQl server management studio express Pin
N a v a n e e t h20-Jan-09 17:57
N a v a n e e t h20-Jan-09 17:57 
QuestionChart with CrystalReport Pin
Mohammad Dayyan20-Jan-09 16:46
Mohammad Dayyan20-Jan-09 16:46 
AnswerRe: Chart with CrystalReport Pin
N a v a n e e t h20-Jan-09 17:19
N a v a n e e t h20-Jan-09 17:19 
GeneralRe: Chart with CrystalReport Pin
Mohammad Dayyan20-Jan-09 17:37
Mohammad Dayyan20-Jan-09 17:37 
QuestionWeb Form Design Question Pin
JasonBerb20-Jan-09 15:08
JasonBerb20-Jan-09 15:08 
AnswerRe: Web Form Design Question Pin
N a v a n e e t h20-Jan-09 17:21
N a v a n e e t h20-Jan-09 17:21 
Questionicon changes when apps are grouped in taskbar Pin
rbuchana20-Jan-09 14:54
rbuchana20-Jan-09 14:54 
AnswerRe: icon changes when apps are grouped in taskbar Pin
Guffa20-Jan-09 15:01
Guffa20-Jan-09 15:01 
GeneralRe: icon changes when apps are grouped in taskbar Pin
rbuchana20-Jan-09 15:14
rbuchana20-Jan-09 15:14 
QuestionCryptography Pin
Scalee20-Jan-09 13:47
Scalee20-Jan-09 13:47 
AnswerRe: Cryptography Pin
Mark Churchill20-Jan-09 14:43
Mark Churchill20-Jan-09 14:43 
AnswerRe: Cryptography Pin
Guffa20-Jan-09 14:46
Guffa20-Jan-09 14:46 
Encryption deals with bytes, so if you encrypt from a string to a string you first encode the string into bytes, encrypt, then represent the encrypted bytes as a string.

If you use UTF-16 (Encoding.Unicode.GetBytes method) to encode the string, each character is stored as two bytes. If you then represent the encrypted bytes as a string in hexadecimal format, it doubles again. Using base-64 to represent the bytes as a string is more compact, as it only adds another 33%.

The UTF-8 encoding is more compact, as it stores the most common characters in a single byte.

Despite everything, the person most likely to be fooling you next is yourself.

QuestionHow to use WSDL in VS2008 Pin
Scott Elder20-Jan-09 13:31
Scott Elder20-Jan-09 13:31 
QuestionDataGridView, RowEnter exception upon header select Pin
Lodeclaw20-Jan-09 11:46
Lodeclaw20-Jan-09 11:46 
AnswerRe: DataGridView, RowEnter exception upon header select Pin
Lodeclaw20-Jan-09 11:53
Lodeclaw20-Jan-09 11:53 
QuestionSession states between two pages with two gridtables Pin
CrimeanTurtle200820-Jan-09 11:40
CrimeanTurtle200820-Jan-09 11:40 
AnswerRe: Session states between two pages with two gridtables Pin
Colin Angus Mackay20-Jan-09 13:13
Colin Angus Mackay20-Jan-09 13:13 
GeneralRe: Session states between two pages with two gridtables Pin
CrimeanTurtle200820-Jan-09 13:29
CrimeanTurtle200820-Jan-09 13:29 
QuestionStream / MemoryStream Pin
Jacob D Dixon20-Jan-09 11:18
Jacob D Dixon20-Jan-09 11:18 
AnswerRe: Stream / MemoryStream Pin
Wendelius20-Jan-09 11:47
mentorWendelius20-Jan-09 11:47 
GeneralRe: Stream / MemoryStream Pin
Jacob D Dixon20-Jan-09 12:32
Jacob D Dixon20-Jan-09 12:32 
AnswerRe: Stream / MemoryStream Pin
Ennis Ray Lynch, Jr.20-Jan-09 12:46
Ennis Ray Lynch, Jr.20-Jan-09 12:46 

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.