pavanjosh
June 8th, 2006, 02:58 AM
Hello All,
Thanks very much for the support. But the problem is something like this
In managed C++ how do i make this happen,
say i have a class something like this
__gc class simple
{
public:
String *name;
int id;
simple(String *name,int id):name(name),id(id){}
};
int _tmain()
{
simple *s = new simple("xyz",100);
cout << s;
}
Now do i make that happen?
It is troubling me a lot
Please help if somebody finds a solution
Thanks
Pavan Johsi
Thanks very much for the support. But the problem is something like this
In managed C++ how do i make this happen,
say i have a class something like this
__gc class simple
{
public:
String *name;
int id;
simple(String *name,int id):name(name),id(id){}
};
int _tmain()
{
simple *s = new simple("xyz",100);
cout << s;
}
Now do i make that happen?
It is troubling me a lot
Please help if somebody finds a solution
Thanks
Pavan Johsi