Click to See Complete Forum and Search --> : [Visual C++] Aboutbox


dileoa
February 22nd, 2009, 04:16 AM
Hello.
I am studing Visual C++ Express IDE, and I am building a new project, in which I added an AboutBox.
I would use "AssemblyInfo.cpp" data to fill Aboutbox and to do that I am translating program lines from a c# application (Visual c# generates automatically an Aboutbox that reads "AssemblyInfo.cs").
At the moment, I can not translate the following line:

object[] attributes=Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute),false);

In particular I am not able to find the corrisponding c++ syntax for c# "object[]". I searched information on MSDN but I did not find/understand anything usefull.
Can anyone help me?
Many thanks.
Antonio Di Leo

Alex F
February 22nd, 2009, 08:25 AM
array<Object^>^ attributes = ...

dileoa
February 22nd, 2009, 10:15 AM
Many thanks
Antonio