Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Formats the value of the current instance using the specified format.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Function ToString ( _
format As String, _
formatProvider As IFormatProvider _
) As String
'Usage
Dim instance As JET_LS
Dim format As String
Dim formatProvider As IFormatProvider
Dim returnValue As String
returnValue = instance.ToString(format, _
formatProvider)
public string ToString(
string format,
IFormatProvider formatProvider
)
Parameters
format
Type: System.StringThe String specifying the format to use. -or- null to use the default format defined for the type of the IFormattable implementation.
formatProvider
Type: System.IFormatProviderThe IFormatProvider to use to format the value. -or- null to obtain the numeric format information from the current locale setting of the operating system.
Return value
Type: System.String
A String containing the value of the current instance in the specified format.
Implements
IFormattable.ToString(String, IFormatProvider)