Returns a formatted date string
Syntax
'Declaration
Public Overloads Shared Function FormatDate( _
ByVal As Date, _
ByVal As Utils.DateFormat _
) As String
'Usage
Dim d As Date
Dim f As Utils.DateFormat
Dim value As String
value = Utils.FormatDate(d, f)
public static string FormatDate(
DateTime ,
Utils.DateFormat
)
public function FormatDate(
: DateTime;
: Utils.DateFormat
): String; static;
public static function FormatDate(
: DateTime,
: Utils.DateFormat
) : String;
public: static string* FormatDate(
DateTime ,
Utils.DateFormat
)
public:
static String^ FormatDate(
DateTime ,
Utils.DateFormat
)
Parameters
- d
- f
See Also