0
votes
1answer
37 views
How to return an array of .NET objects via a COM method
I have a .NET assembly. It happens to be written in C++/CLI. I am exposing a few objects via COM. Everything is working fine, but I cannot for the life of me figure out how to r …
0
votes
2answers
33 views
How to dispose of a NET COM interop object on Release()
I have a COM object written in managed code (C++/CLI). I am using that object in standard C++.
How do I force my COM object's destructor to be called immediately when the COM obje …
1
vote
1answer
57 views
Visual Studio 8: Build Times in mixed-mode assemblies.
I have an C++/CLI assembly consisting of approximately 50 source files. The code in this assembly links statically to a number of C++ libraries to do various 'heavy-lifiting' type …
-1
votes
0answers
78 views
Native C Dll calling C++/CLI Mixed Mode Dll - Unhandled Exception
I have a Native C Dll that is dynamically loaded by a legacy application. The intent of this dll is to allow overriding of application behavior based on certain application events …
0
votes
2answers
96 views
Why does not C# support operator overloading with pass by reference?
Is this a CLR restriction or a language design decision? I tried to do it in C++/CLI, of course where it works because the need to support native c++:
public ref class Test
{
…
1
vote
2answers
84 views
Do all Standard C++ features work in C++/CLI?
If I just include existing Standard C++ class in C++/CLI program, will it work?
In my tests everything worked pretty good, but is it true for every program?
1
vote
2answers
99 views
C++/CLI: Boxing and Generic Lists
I am trying to create a generic list of references to PointF objects. (No, I am not looking to create a generic list of PointF objects.) However, the following line fails to compil …
0
votes
1answer
47 views
to call c# form in viusal c++
i have make a c# form in csharp and i want to call it on visual c++.how would i call my forms in visual c++.please give me some sloution.
0
votes
1answer
109 views
C++/CLI Managed Wrapper and ADODB::Recordset
I have a native C++ DLL that uses COM ADO Recordsets and am in need of converting it to the .NET variant (ADODB::Recordset). I have tried several approaches to tackling this probl …
0
votes
2answers
132 views
translating C++/CLI code to C#
I'm trying to translate this c++/cli code to c#
#pragma once
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <tchar.h>
using namespace System;
using …
0
votes
2answers
58 views
How to properly define properties in c++/cli in headers/body
I am trying to do
property double Real;
and then
double Data::ComplexNumber::Real::get() {
return _real;
}
But it is giving error. How do you go about declaring the metho …
1
vote
3answers
99 views
translate C++/CLI into C#
How I can translate small C++/CLI project to c#
0
votes
2answers
190 views
Calling .NET assembly using Xslt from Delphi 5 Win32 assembly.
This is my first attempt to call a .NET assembly from a Delphi 5 (Win32) native assembly. I am only familiar with C# and .NET so please bear with me.
I guess I will walk thru this …
0
votes
1answer
111 views
C++/CLI ref class using a win32 thread
I'm trying to encapsulate some older win32 code in a C++/CLI ref class to make it better accessible from .NET code. This class needs to start a Win32 thread and pass a pointer to t …
0
votes
1answer
56 views
How to avoid .dll dependencies under .NET
Hello:
I am writing a C++/CLI which have access/"dependencies" to many DLL COM and DLL .NET libraries.
Is this possible to link/join all these libraries into my C++/CLI program a …
