MemoryStream::Length Property

 

Gets the length of the stream in bytes.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

public:
property long long Length {
	virtual long long get() override;
}

Property Value

Type: System::Int64

The length of the stream in bytes.

Exception Condition
ObjectDisposedException

The stream is closed.

This code example is part of a larger example provided for the MemoryStream class.

// Write the stream properties to the console.
Console::WriteLine( "Capacity = {0}, Length = {1}, "
"Position = {2}\n", memStream->Capacity.ToString(), memStream->Length.ToString(), memStream->Position.ToString() );

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: