User profile: Danielm103

User info
User name:Danielm103
Name:Daniel
Location:Tung Chung
Bio:Learning C++, ObjectArx for Cad
History
Joined:
Number of posts:7
Latest posts:

Converting Managed String to char Array
if you use StringToHGlobalAnsi don't forget to free the memory. I have been using CString as it has...

How to declare an int array within a managed class?
try using [code]array<int> ^bval; [/code] and initialize it in your constructor with [cod...

missing constructor???
I’ve been told that I don’t look that smart before : -) thanks Grey Wolf

using arrays
You need to initialize your array correctly I.e [code] int matrix[3][3]; matrix[0][0] = 1...

missing constructor???
Try public ref class SData and there is no need to derive from System::Object, as all object...