Imports System.Text.Encoding

I know C# is using.

Then look at ASCIIEncoding.  functions()
This gives you the ability to convert string data to a byte array of
numbers H=73 and also provides a method to convert 73 back to H. I don't
have it all in front of me right now, but this namespace provides what you
need.

John Warner




> -----Original Message-----
> From: Discussion of advanced .NET topics.
> [mailto:[EMAIL PROTECTED] On Behalf Of R. Rogers
> Sent: Monday, March 17, 2008 11:49 PM
> To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM
> Subject: [ADVANCED-DOTNET] Write out the alphabet
>
>
> The Char datatype isn't as wieldly as I thought it would be
> in C#. How can I write some simple code similar to this:
>
> for (char Letter = 'a'; Letter <= 'z'; Letter++)
>   Debug.Write(Letter.ToString());
>
> It's the part of incrementing the char, that I can't figure out.
>
> Any pointers are much appreciated,
>
> Thanks.
>
> Richard Rogers
> http://www.RichardRogers.ca/
> (MSN) [EMAIL PROTECTED]
>
> ===================================
> This list is hosted by DevelopMentorR  http://www.develop.com
>
> View archives and manage your subscription(s) at
> http://discuss.develop.com
>

===================================
This list is hosted by DevelopMentorĀ®  http://www.develop.com

View archives and manage your subscription(s) at http://discuss.develop.com

Reply via email to