StringExtensions.FormatWith Method (String, Object[])
Applies To: Dynamics CRM 2013
Calls the Format(IFormatProvider, String, Object[]) method with the InvariantCulture provider to return the formatted string.
Namespace: Microsoft.Xrm.Client
Assembly: Microsoft.Xrm.Client (in Microsoft.Xrm.Client.dll)
Syntax
public static string FormatWith(
this string format,
params object[] args
)
public:
[ExtensionAttribute]
static String^ FormatWith(
String^ format,
... array<Object^>^ args
)
static member FormatWith :
format:string *
[<ParamArrayAttribute>] args:Object[] -> string
<ExtensionAttribute>
Public Shared Function FormatWith (
format As String,
ParamArray args As Object()
) As String
Parameters
format
Type: System.StringType: String. The format.
args
Type: System.Object[]Type: Object[]. The arguments to pass to the formatter.
Return Value
Type: System.String
Type: String
The formatted string.
See Also
StringExtensions Class
Microsoft.Xrm.Client Namespace
Developer extensions for Microsoft Dynamics CRM 2013
Return to top