1
vote
2answers
96 views
Is it difficult to port C++ to C++/CLI?
I suppose you cannot simply compile a C++ application with a C++/CLI compiler. I am wondering if it would be difficult. Has anybody tried this, and if so: were there a lot of modif …
0
votes
4answers
38 views
How to share constant values in .net namespaces?
I'm trying to port some code into .net which has a load of #define'd values e.g.
#define MY_CONSTANT (512)
#define MY_VERSION_STRING "v42.2"
When I import a cli library th …
1
vote
1answer
45 views
Exposing unmanaged const static std::string in a managed C++ class
I have a non-.NET C++ class as follows:
Foo.h:
namespace foo {
const static std::string FOO;
...
}
Foo.cc:
using namespace foo;
const std::string FOO = "foo";
I want to …
0
votes
2answers
131 views
What does the ^ operator do in C++ (when declaring a variable)? [closed]
Possible Duplicate:
What does the caret mean in C++/CLI?
For example if I declare a variable like this:
vector<int>^ myVec;
what does the ^ operator do?
0
votes
2answers
24 views
Creating 64 bit CLR C++ projects in VS2008
I am creating a wrapper around a native lib, which comes in both 32 & 64 bit flavors. I have a fairly complex C++/CLR project that includes a number of header files from the na …
1
vote
2answers
69 views
How to trim an array in .NET?
Say I have an array
array<double>^ buffer = gcnew array<double>(100);
And I want a function that does something like:
void foo(array<double>^% buffer)
{
A …
0
votes
1answer
44 views
C++ Wrapper Native Interop Enterprise Scale
I want to know what is the best approach to wrapping a massive library written in C++ to make it accessible in C#.
I have done work with interop before, and I love IJW. But I am …
0
votes
1answer
25 views
VS2008 C++ /CLI generated code formatting/placement issues
New to VS2008...
I am using CLR Forms to create a GUI. I put a button on the form and then ask the IDE to create a click event. VS2008 puts the code in the .h file and formats …
1
vote
1answer
22 views
[NonSerialized] in C++/CLI
When I'm trying serialize a class containing this property:
[NonSerialized]
property System::Collections::ObjectModel::ReadOnlyCollection<String^>^ IgnoredWords
I get a co …
0
votes
3answers
107 views
How to read a word into a string ignoring a certain character.
I am reading a text file which contains a word with a punctuation mark on it and I would like to read this word into a string without the punctuation marks.
For example, a word ma …
0
votes
2answers
38 views
Why I need an instance of Odbc reader, but now Odbc connection?
Hi,
On the classs level, I have declared:
System::Data::Odbc::OdbcConnection conn;
System::Data::Odbc::OdbcDataReader datareader; //doesnt work
System::Data::Odbc::OdbcDataReader^ …
3
votes
4answers
77 views
Cpp . NET: “a->Methodname “ vs “a.MethodName”
Hi,
I would like to know the difference between these two (sorry I do not know the name of this subject).
I come from C# where I was used to write System.data as well as classA.Me …
0
votes
1answer
43 views
How to add a click handler to a WPF Button in C++/CLR?
Hi !
In C#, I can do (*):
Button b = new Button();
b.Click += ButtonOnClick;
:
void ButtonOnClick(object sender, RoutedEventArgs e)
{
// do so …
0
votes
1answer
35 views
How to display managed control on native window?
Using C++/CLI, How to display a managed control (eg. System::Windows::Forms::Panel^) on a window created in native code?
An external program calls my native method where i can acc …
1
vote
1answer
149 views
.NET mixed multi-file assembly
I need to create a .NET assembly composed of 2 modules: 1 internal (in the DLL) with native code and 1 external (in a .netmodule file).
This would be easy to do, except for the na …
