954,498 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to use my data type in a function

Hi all,

I've created an object array from a managed class.

array<MyDataType_Class^> ^Object = gcnew array <MyDataType_Class^> (3);
Object[1] = gcnew MyDataType_Class;
Object[1]->id = 1;
Object[1]->surnmame = "Foo";
TextBox1->AppendText(ConvertToString(Object[1]->surname)); // Outputs "Foo"

The object works well and outputs expected results. However what i need is :Calling or using this data type in some other custom functions

P.S Referred class above

public ref class MyDataType_Class // managed class
   
      {
      public:
      int id;
      String ^surnmame; 
      MyDataType_Class() : id(0),surname(""){}
      }


Thanks a lot.

cangan
Newbie Poster
16 posts since Jan 2012
Reputation Points: 11
Solved Threads: 0
 

Don't make a Duplicate post

zeroliken
Veteran Poster
1,106 posts since Nov 2011
Reputation Points: 201
Solved Threads: 162
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: