System::Buffer::ByteLength method
Contents
[
Hide
]Buffer::ByteLength(const SharedPtr<Array<T>>&) method
Determines the number of bytes occupied by all elements of the specified array.
template<class T> static int System::Buffer::ByteLength(const SharedPtr<Array<T>> &array)
| Parameter | Description | 
|---|---|
| T | The type of elements of the array | 
| Parameter | Type | Description | 
|---|---|---|
| array | const SharedPtr<Array<T>>& | An array | 
ReturnValue
The number of bytes occupied by all elements of the specified array
See Also
- Typedef SharedPtr
 - Class Array
 - Class Buffer
 - Namespace System
 - Library Aspose.PUB for C++
 
Buffer::ByteLength(const System::Details::ArrayView<T>&) method
Determines the number of bytes occupied by all elements of the specified array.
template<class T> static int System::Buffer::ByteLength(const System::Details::ArrayView<T> &array)
| Parameter | Description | 
|---|---|
| T | The type of elements of the array view | 
| Parameter | Type | Description | 
|---|---|---|
| array | const System::Details::ArrayView<T>& | An array view | 
ReturnValue
The number of bytes occupied by all elements of the specified array view
See Also
- Class Buffer
 - Namespace System
 - Library Aspose.PUB for C++
 
Buffer::ByteLength(const System::Details::StackArray<T, N>&) method
Determines the number of bytes occupied by all elements of the specified array.
template<class T,std::size_t> static int System::Buffer::ByteLength(const System::Details::StackArray<T, N> &array)
| Parameter | Description | 
|---|---|
| T | The type of elements of the stack array | 
| N | The size of the stack array | 
| Parameter | Type | Description | 
|---|---|---|
| array | const System::Details::StackArray<T, N>& | An stack array | 
ReturnValue
The number of bytes occupied by all elements of the specified stack array
See Also
- Class Buffer
 - Namespace System
 - Library Aspose.PUB for C++