Attribut::Attribut(Member& _membre)
 : membre(_membre), nom(_membre.Name()->ToString()), type(),
   classe(_membre.Supplier())
 {
 
   TypeInfo informationType ;
   _membre.Signature(informationType) ;
   
   type = Type::Construire(informationType, _membre.Supplier()->GetEnvironment()) ;
 
 }