Click here to Skip to main content
16,009,255 members
Home / Discussions / C#
   

C#

 
QuestionBrowse for folder in C# ?? Pin
Martin Haesemeyer29-Jun-02 6:04
Martin Haesemeyer29-Jun-02 6:04 
AnswerRe: Browse for folder in C# ?? Pin
Nish Nishant29-Jun-02 21:37
sitebuilderNish Nishant29-Jun-02 21:37 
GeneralRe: Browse for folder in C# ?? Pin
Martin Haesemeyer29-Jun-02 21:52
Martin Haesemeyer29-Jun-02 21:52 
GeneralMarshalling accross processes Pin
vikramlinux29-Jun-02 2:11
vikramlinux29-Jun-02 2:11 
GeneralRe: Marshalling accross processes Pin
Nish Nishant29-Jun-02 21:40
sitebuilderNish Nishant29-Jun-02 21:40 
GeneralRe: Marshalling accross processes Pin
vikramlinux29-Jun-02 23:15
vikramlinux29-Jun-02 23:15 
GeneralRe: Marshalling accross processes Pin
Nish Nishant29-Jun-02 23:29
sitebuilderNish Nishant29-Jun-02 23:29 
Questionbyte to ASCII value? Pin
28-Jun-02 11:56
suss28-Jun-02 11:56 
How do I convert a byte to it's numeral ASCII value?

<pre>
string input;
input = Console.ReadLine();
Byte[] byteIn = Encoding.ASCII.GetBytes(input);
int i = 0;

while(i < byteIn.Length)
{




Console.WriteLine(byteIn[i]);

i++;
}

</pre>

That will take the input and print the ascii values (in numeral form) to the console, I want to convert the byte value to a int so I can export it in a certain way.

Thanks.


AnswerRe: byte to ASCII value? Pin
Christopher Lord28-Jun-02 14:41
Christopher Lord28-Jun-02 14:41 
AnswerRe: byte to ASCII value? Pin
TigerNinja_5-Jul-02 5:56
TigerNinja_5-Jul-02 5:56 
GeneralProblem with deployment shortcut arguments Pin
Marc Clifton28-Jun-02 11:10
mvaMarc Clifton28-Jun-02 11:10 
AnswerRe: Problem with deployment shortcut arguments Pin
JollyMansArt5-Aug-09 16:59
JollyMansArt5-Aug-09 16:59 
GeneralMagic Library 1.6 Pin
leppie28-Jun-02 3:48
leppie28-Jun-02 3:48 
GeneralRe: Magic Library 1.6 Pin
Chris Rickard28-Jun-02 4:09
Chris Rickard28-Jun-02 4:09 
GeneralRe: Magic Library 1.6 Pin
SimonS28-Jun-02 21:01
SimonS28-Jun-02 21:01 
GeneralRe: Magic Library 1.6 Pin
leppie29-Jun-02 1:18
leppie29-Jun-02 1:18 
GeneralDockable == usable? Pin
SimonS29-Jun-02 1:51
SimonS29-Jun-02 1:51 
GeneralRe: Dockable == usable? Pin
leppie29-Jun-02 5:34
leppie29-Jun-02 5:34 
GeneralRe: Dockable == usable? Pin
SimonS29-Jun-02 6:47
SimonS29-Jun-02 6:47 
GeneralRe: Magic Library 1.6 Pin
Andreas Philipson1-Jul-02 21:48
Andreas Philipson1-Jul-02 21:48 
GeneralExample of calling C++ dll functions from C#........ Pin
Pranoti28-Jun-02 3:02
Pranoti28-Jun-02 3:02 
GeneralRe: Example of calling C++ dll functions from C#........ Pin
Rüpel28-Jun-02 3:20
Rüpel28-Jun-02 3:20 
GeneralRe: Example of calling C++ dll functions from C#........ Pin
Pranoti28-Jun-02 3:35
Pranoti28-Jun-02 3:35 
GeneralRe: Example of calling C++ dll functions from C#........ Pin
28-Jun-02 7:41
suss28-Jun-02 7:41 
QuestionHow to get use of IMediaSeeking Pin
27-Jun-02 23:41
suss27-Jun-02 23:41 

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.