Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
AnswerRe: Book Help Pin
Swiftain15-Sep-10 20:58
Swiftain15-Sep-10 20:58 
GeneralRe: Book Help Pin
NaveenHS15-Sep-10 21:09
NaveenHS15-Sep-10 21:09 
GeneralRe: Book Help Pin
N a v a n e e t h15-Sep-10 22:56
N a v a n e e t h15-Sep-10 22:56 
GeneralRe: Book Help Pin
NaveenHS15-Sep-10 23:17
NaveenHS15-Sep-10 23:17 
AnswerRe: Book Help Pin
i.j.russell16-Sep-10 1:14
i.j.russell16-Sep-10 1:14 
AnswerRe: Book Help [modified] Pin
Luc Pattyn16-Sep-10 1:21
sitebuilderLuc Pattyn16-Sep-10 1:21 
QuestionBack with base10, an example code. Hopefully I can exaplain now Pin
stephen.darling15-Sep-10 10:43
stephen.darling15-Sep-10 10:43 
AnswerRe: Back with base10, an example code. Hopefully I can exaplain now Pin
Ennis Ray Lynch, Jr.15-Sep-10 10:53
Ennis Ray Lynch, Jr.15-Sep-10 10:53 
I think you will find the same code will work, almost in C#. Your code is using char arrays, not byte arrays (In c I think there is no difference) however, in C# you have the option of:

string abc;
abc.ToCharArray();


or if you insist on bytes:

    string abc;
    System.Text.ASCIIEncoding ae = new System.Text.ASCIIEncoding();
    ae.GetBytes(abc);
<pre>
<div class="signature"><font size="-2"> 
Need <a href="http://www.erlglobal.com">custom software developed</a>? I do <a href="http://www.erlglobal.com">custom programming</a> based primarily on MS tools with an emphasis on <a href="http://www.erlglobal.com">C# development and consulting</a>. I also do <a href="http://www.erlglobal.com">Android Programming</a> as I find it a refreshing break from the MS.

"And they, since they Were not the one dead, turned to their affairs" -- Robert Frost
</font></div>

GeneralRe: Back with base10, an example code. Hopefully I can exaplain now Pin
stephen.darling15-Sep-10 11:12
stephen.darling15-Sep-10 11:12 
AnswerMessage Closed Pin
15-Sep-10 22:09
stancrm15-Sep-10 22:09 
GeneralRe: Back with base10, an example code. Hopefully I can exaplain now Pin
stephen.darling16-Sep-10 4:32
stephen.darling16-Sep-10 4:32 
AnswerRe: Back with base10, an example code. Hopefully I can exaplain now Pin
David Skelly15-Sep-10 22:41
David Skelly15-Sep-10 22:41 
GeneralRe: Back with base10, an example code. Hopefully I can exaplain now Pin
Bassam Abdul-Baki16-Sep-10 3:25
professionalBassam Abdul-Baki16-Sep-10 3:25 
GeneralRe: Back with base10, an example code. Hopefully I can exaplain now Pin
David Skelly16-Sep-10 5:58
David Skelly16-Sep-10 5:58 
QuestionTCPIP client server communications Pin
dwolver15-Sep-10 3:03
dwolver15-Sep-10 3:03 
AnswerMessage Closed Pin
15-Sep-10 3:33
stancrm15-Sep-10 3:33 
GeneralRe: TCPIP client server communications Pin
dwolver15-Sep-10 4:34
dwolver15-Sep-10 4:34 
QuestionI'm trying to get a Session and redirect in Globa.asax Pin
luiz sync15-Sep-10 2:13
luiz sync15-Sep-10 2:13 
AnswerRe: I'm trying to get a Session and redirect in Globa.asax Pin
Calla15-Sep-10 2:42
Calla15-Sep-10 2:42 
Questionsetup and unistall Pin
tomorrow_ft15-Sep-10 2:03
tomorrow_ft15-Sep-10 2:03 
AnswerRe: setup and unistall Pin
Calla15-Sep-10 2:36
Calla15-Sep-10 2:36 
GeneralRe: setup and unistall Pin
tomorrow_ft15-Sep-10 2:48
tomorrow_ft15-Sep-10 2:48 
GeneralRe: setup and unistall Pin
tomorrow_ft15-Sep-10 3:03
tomorrow_ft15-Sep-10 3:03 
GeneralRe: setup and unistall Pin
Calla15-Sep-10 22:47
Calla15-Sep-10 22:47 
GeneralRe: setup and unistall Pin
tomorrow_ft16-Sep-10 1:23
tomorrow_ft16-Sep-10 1:23 

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.