Gets or sets the current position of this stream.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Overrides Property Position As Long
Dim instance As FileStream
Dim value As Long
value = instance.Position
instance.Position = value
public override long Position { get; set; }
public:
virtual property long long Position {
long long get () override;
void set (long long value) override;
}
/** @property */
public long get_Position ()
/** @property */
public void set_Position (long value)
public override function get Position () : long
public override function set Position (value : long)
Property Value
The current position of this stream.
Seeking to any location beyond the length of the stream is supported. When you seek beyond the length of the file, the file size grows. In Microsoft Windows NT and newer, any data added to the end of the file is set to zero. In Microsoft Windows 98 or earlier, any data added to the end of the file is not set to zero, which means that previously deleted data is visible to the stream. Setting the position of the stream to a large value beyond the end of the stream in Windows 98 or earlier may result in an exception being raised.
The following table lists examples of other typical or related I/O tasks.
The following example uses the Length and Position properties to check for an end-of-file condition.
If s.Length = s.Position Then
Console.WriteLine("End of file has been reached.")
End If
if( s.Length==s.Position )
{
Console.WriteLine("End of file has been reached.");
}
if ( s->Length == s->Position )
{
Console::WriteLine( "End of file has been reached." );
}
if (s.get_Length() == s.get_Position()) {
Console.WriteLine("End of file has been reached.");
}
if( s.Length==s.Position )
Console.WriteLine("End of file has been reached.");
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
.NET Framework
Supported in: 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 2.0, 1.0