CComBSTR::ByteLength
Retourne le nombre d'octets dans m_str, à l'exception de le caractère NULL de fin.
unsigned int ByteLength( ) const throw( );
Valeur de retour
La longueur du membre de m_str en octets.
Notes
Retourne 0 si m_str est NULL.
Exemple
// string with 11 chars (22 bytes)
CComBSTR bstrTemp(OLESTR("Hello World"));
unsigned int len = bstrTemp.ByteLength();
ATLASSERT(len == 22);
Configuration requise
Header: atlbase.h