Sharpen.RandomAccessFile.Length C# (CSharp) Method

Length() public method

public Length ( ) : long
return long
        public long Length()
        {
            return stream.Length;
        }

Usage Example

		/// <exception cref="System.IO.IOException"/>
		public RandomAccessFileReader(RandomAccessFile file)
		{
			if (file == null)
			{
				throw new ArgumentNullException();
			}
			_file = file;
			_length = _file.Length();
		}