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 4070476
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T16:37:57+00:00 2026-05-20T16:37:57+00:00

This is the first time I’m trying to mix c# an unmanaged C++ so

  • 0

This is the first time I’m trying to mix c# an unmanaged C++ so this might be a very simple question , but I don’t get it.

I need to call some functions from a C++ dll into C# code. Here is the code for the dll project:

the .h file :

#pragma once 
#include <iostream>
#if defined FIRSTDLL_EXPORTS
    #define DECLDIR __declspec(dllexport)
#else
    #define DECLDIR __declspec(dllimport)
#endif

extern "C"
    {
      DECLDIR int Add( int a, int b );
      DECLDIR void Function( void );
    }

the .cpp file

#include "stdafx.h"
#include "myFct.h"
#include <iostream>

extern "C"
{
      DECLDIR int Add( int a, int b )
      {
          return( a + b );
}

      DECLDIR void Function( void )
      {
          std::cout << "DLL Called!" << std::endl;
      }
}

I compiled this for both the debug and releas and copied it in the debug folder of my C# project. Neither version worked.

Here is the c# code:

[DllImport("firstDLL.Dll")]
public static extern int Add(int a, int b);


var cyu = Add(3, 5);

And when I try to run this I get

“Managed Debugging Assistant ‘PInvokeStackImbalance’ has detected a problem in ‘C:\Program Files\Microsoft Office\Office14\WINWORD.EXE’.
Additional Information: A call to PInvoke function ‘MyAddin!MyAddin.ThisAddIn::Add’ has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.”

But as I see the signatures are the same. What am I missing??

Thanks!

  • 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-20T16:37:57+00:00Added an answer on May 20, 2026 at 4:37 pm

    The default calling convention for DLLImport is stdcall, but the default of your C++ code is cdecl. The error message you have seen is what is shown when the calling conventions don’t match. The parameter stack cleanup requirements are different for these two calling conventions, and the P/Invoke marshaller detects and reports this.

    The fix is to make your calling conventions match.

    For example you could change your P/Invoke like so:

    [DllImport("firstDLL.Dll", CallingConvention = CallingConvention.Cdecl)]
    public static extern int Add(int a, int b);
    

    The other option is to change your C++:

    #if defined FIRSTDLL_EXPORTS(returntype)
        #define DECLDIR __declspec(dllexport) returntype __stdcall
    #else
        #define DECLDIR __declspec(dllimport) returntype __stdcall
    #endif
    

    Clearly you should only do one of these. If you change both C# and C++ you’ll have the same problem in reverse!

    If I were you I would leave the C++ code as cdecl and change the C# to match.

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

Sidebar

Related Questions

this is my first time asking a question here. I tried to be well
This is my first time using XML documents. What I'm trying to do is
This is my first time trying to set up a database. My intent is
I am trying to install elastic plugin. This is first time i am installing
This is first time that I work with json. I am trying to return
I'm using PayPal sandbox for the payment gateway, this is first time I'm trying
I am doing this first time so I need some help. I am using
This is my first time working with a WPF datagrid. From what I understand
This is my first time that I use WCF and Android. So, sorry for
This is the first time, I am involved in writing a complete client for

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.