|
FilterExtensionsIsBiggerThan Method |
Returns if the file is bigger than the length
Namespace: DrawerBackup.Native.ExpressionsAssembly: DrawerBackup.Native (in DrawerBackup.Native.dll) Version: 0.0.1.1 (0.0.1.1)
Syntaxpublic static bool IsBiggerThan(
this FileInfo file,
long length
)
<ExtensionAttribute>
Public Shared Function IsBiggerThan (
file As FileInfo,
length As Long
) As Boolean
public:
[ExtensionAttribute]
static bool IsBiggerThan(
FileInfo^ file,
long long length
)
[<ExtensionAttribute>]
static member IsBiggerThan :
file : FileInfo *
length : int64 -> bool
Parameters
- file
- Type: System.IOFileInfo
- length
- Type: SystemInt64
Return Value
Type:
BooleanUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FileInfo. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also