Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/08/2009, 15:28
iozk
 
Fecha de Ingreso: mayo-2008
Mensajes: 499
Antigüedad: 16 años, 7 meses
Puntos: 1
Respuesta: como accesar a miembros de una clase

entonces asi voy bien?

Código C#:
Ver original
  1. #region Constructor / Destructor
  2.  
  3.       public VSTreeNode() : base()
  4.       {
  5.         this.mToolTipCaption = string.Empty;
  6.         this.mOnEdit         = false;
  7.         this.mEnabled        = true;
  8.       }
  9.  
  10.       #endregion

Código C++:
Ver original
  1. public:
  2.             TNTreeNode(void)
  3.             {
  4.                 this->mToolTipCaption = char.Empty;
  5.                 this->mOnEdit           = false;
  6.                 this->mEnabled          = true;
  7.             }
  8.         protected:
  9.             ~TNTreeNode()
  10.             {
  11.                 //Destructor
  12.             }
  13.         }