| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| Managed C++ and C++/CLI Discuss Managed C++ and .NET-specific questions related to C++. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Equivalent for CHR$ in VB
Dear all,
In VB we can write ASCII character using CHR$ Functions. CHR$(65) is "A". How do this in managed c++? Thanks, iman |
|
#2
|
||||
|
||||
|
Re: Equivalent for CHR$ in VB
Well...
Code:
char A = (char)65;
Console::WriteLine("65 is: {0}", A);
__________________
I am not offering technical guidiance via email or IM Come on share your photo with us! CG members photo album! Use the Code Tags! |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|