Returns a formatted file size
Syntax
'Declaration
Public Shared Function FormatFileSize( _
ByVal As Long _
) As String
'Usage
Dim size As Long
Dim value As String
value = Utils.FormatFileSize(size)
public static string FormatFileSize(
long
)
public function FormatFileSize(
: Int64
): String; static;
public static function FormatFileSize(
: long
) : String;
public: static string* FormatFileSize(
long
)
public:
static String^ FormatFileSize(
int64
)
Parameters
- size
See Also