LogViewer.FileWithPosition.FileHasBecomeLarger C# (CSharp) Method

FileHasBecomeLarger() public method

public FileHasBecomeLarger ( ) : bool
return bool
        public bool FileHasBecomeLarger()
        {
            using (var f = FileUtil.OpenReadOnly(FileName))
            {
                return (f.Length > position);
            }
        }