I need a help on one question where I stuck while coding my app in MFC
.
I am using CLR
i.e Common Language Runtime
in my appli
Consider reading this MSDN thread about string conversions. Also, following discussions may be useful for you:
With this material you can find out how to do it and even post own solution as an answer
Got My answer. Thanks for your support @Elliot Tereschuk.
I have gone through some references like
and
include header files
#include <msclr/marshal_windows.h>
#include <msclr/marshal.h>
using Library
using namespace msclr::interop;
And finally My source code is.
String^ csPass = gcnew String(strPassword.GetBuffer());
array<Byte>^ Value = Encoding::UTF8->GetBytes(csPass);
for (int i = 0; i < Value->Length; i++ )
{
csPass += String::Format( "{0:X2}", Value[ i ] );
}
marshal_context^ context = gcnew marshal_context();
const char* str = context->marshal_as<const char*>(csPass);
csMyPass.Format(str);
csMypass
is a CString
type Variable.
Thank you for support.