P
Peter Oliphant
The following line of code:
m_Font = gcnew System:rawing::Font( L"Arial", 10 ) ;
also works like this:
m_Font = gcnew System:rawing::Font( "Arial", 10 ) ;
Note that the 'L' in front of "Arial" is missing in the second version. What
is the difference, if any, between L"string" and "string"?
[==P==]
m_Font = gcnew System:rawing::Font( L"Arial", 10 ) ;
also works like this:
m_Font = gcnew System:rawing::Font( "Arial", 10 ) ;
Note that the 'L' in front of "Arial" is missing in the second version. What
is the difference, if any, between L"string" and "string"?
[==P==]