Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3340814
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:39:04+00:00 2026-05-18T00:39:04+00:00

I have c++ dll with class in wich I want to send string from

  • 0

I have c++ dll with class in wich I want to send string from C# code, surly I can’t use string because of CLR, i’ll stried to change string into char in c++ dll, and send byte from c#(because c++ char=byte in c#) but c# don’t understand c++ array I can send 1 byte and it will be ok, but not array, please help!
dll Code:

public ref class Coding
    {
    public:
        void HillCoding(char filePath[])
        {

            ...
        }
    };
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T00:39:04+00:00Added an answer on May 18, 2026 at 12:39 am

    Here is the working code of calling C++ dll function from C#:

        sbyte[] A_SB_array = new sbyte[0];
        ArrayConvCtoSB(ref A_SB_array, ar_param.ToCharArray());
        fixed (sbyte* SB_array = A_SB_array)
            return CPSFEW.getDataLength(SB_array);
    

    It’s not the “very good code” but it illustrate what you need.

    PS: Here is ArrayConvCtoSB. I do not like it, it’s just for understanding.

        static private void ArrayConvCtoSB(ref sbyte[] to_sbyte, char[] from_char)
        {
            for (int i = 0; i < from_char.Length; i++)
            {
                Array.Resize(ref to_sbyte, to_sbyte.Length + 1);
                to_sbyte[i] = (sbyte)from_char[i];
            }
        }
    

    PPS: “fixed” is strongly required for forceing garbage collector not to clear the SB_array memory: otherwise it can. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .dll file from a Silverlight class library. How can I create
I have a DLL which contains a class with static members . I use
My code is built to multiple .dll files, and I have a template class
I have a DLL one.dll that uses a class TwoClass exported from two.dll via
I have a C++ DLL (no code) that I want to expose to .NET
I have a dll for a c++ class (SLABHIDDevice.dll). I am trying to use
I have the below method in my dll class library private void Download(string filename)
I have a dll that contains a templated class. Is there a way to
I have an unmanaged dll with a class MyClass in it. Now is there
I have a dll called Test.dll in which I have a class called ABC

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.