I have a dll written in c++. The function takes string as input and returns a long based on some internal algorithm. The function works completely as expected when run in c++ but when the dll is used with c#, although it throws no exception or gives no error but the program stops working. Can someone help me?
C++
static __declspec(dllexport) long long WriteUserData(string userId, int userIdLen)
 {
    cout<<"ID is: "<<userId<<endl;//In c++ displays output but not when called in c#
    cout<<userIdKen<<endl;
    .
    .SomeCode
    .
    return (some long value)
 }
C#
using System;
    using System.Text;
    using System.Collections.Generic;
    using System.Runtime.InteropServices;
    namespace Extreme.Numerics.QuickStart.CSharp
    {
        class Program
        {
        [DllImport(".dll path..",EntryPoint = @"?...entryPoint....",CallingConvention = CallingConvention.Cdecl)]
        public static extern long WriteUserData(string id, int idLen)
    static void Main(string[] args)
     {
        long Serial= WriteUserData("@@rpan@@@@@@@",13);
        Console.WriteLine("test test test");
     }
    }
}
C# Output:
Id is:
It displays nothing more. The last line Console.WriteLine("test test test"); is also not displayed
 
    