NumericSequenceFormatterFormat Method
Converts the value of a specified object to an equivalent string representation
using specified format and culture-specific formatting information.
Namespace: DevCase.Core.Math.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public string Format(
string frmt,
Object arg,
IFormatProvider formatProvider
)
Public Function Format (
frmt As String,
arg As Object,
formatProvider As IFormatProvider
) As String
Dim instance As NumericSequenceFormatter
Dim frmt As String
Dim arg As Object
Dim formatProvider As IFormatProvider
Dim returnValue As String
returnValue = instance.Format(frmt, arg,
formatProvider)
public:
virtual String^ Format(
String^ frmt,
Object^ arg,
IFormatProvider^ formatProvider
) sealed
abstract Format :
frmt : string *
arg : Object *
formatProvider : IFormatProvider -> string
override Format :
frmt : string *
arg : Object *
formatProvider : IFormatProvider -> string
No code example is currently available or this language may not be supported.
- frmt String
-
A format string containing formatting specifications.
- arg Object
-
An object to format.
- formatProvider IFormatProvider
-
An object that supplies format information about the current instance.
String
The string representation of the value of
arg,
formatted as specified by
frmt and
formatProvider.
ICustomFormatterFormat(String, Object, IFormatProvider)
ArgumentException
|
The provided value is not of type Integer().
|
ArgumentNullException
|
frmt
|