VC++2005中托管类的拷贝构造函数应该怎么写?
例如:
using namespace System; ref class Person { public: string ^name; float fFaceLength; float fFaceWidth;Public: Person(void);}
#pragma onceref class Person{public: double name; float fFaceLength; float fFaceWidth;public: Person(void); Person ( Person% other ); Person% operator =( Person% other );};