CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2005
    Posts
    31

    How to convert .Net Framework array to native c++ array ?

    I have 3 variable :

    1. char TVar1[100];
    2. array<char,1>^ TVar2;
    3. String^ TVar3;
    How can I Copy data on TVar2 or TVar3 to TVar1 ?

  2. #2
    Join Date
    May 2005
    Posts
    31

    Re: How to convert .Net Framework array to native c++ array ?

    nevermind after I try to compile it doesn't work. looks like can't mixed between c++ array with c++ managed array.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured