C# Class Recognos.Core.Format

Helper class to format strings with InvariantCulture
Datei anzeigen Open project: Recognos/Recognos.Core

Public Methods

Method Description
Invariant ( string format ) : string

Format a string with invariant culture.

Invariant ( string format, object arg0 ) : string

Format a string with invariant culture.

Invariant ( string format, object arg0, object arg1 ) : string

Format a string with invariant culture.

Invariant ( string format, object arg0, object arg1, object arg2 ) : string

Format a string with invariant culture.

Method Details

Invariant() public static method

Format a string with invariant culture.
public static Invariant ( string format ) : string
format string The format of the string.
return string

Invariant() public static method

Format a string with invariant culture.
public static Invariant ( string format, object arg0 ) : string
format string The format of the string.
arg0 object The argument to format with.
return string

Invariant() public static method

Format a string with invariant culture.
public static Invariant ( string format, object arg0, object arg1 ) : string
format string The format of the string.
arg0 object The argument to format with.
arg1 object The argument to format with.
return string

Invariant() public static method

Format a string with invariant culture.
public static Invariant ( string format, object arg0, object arg1, object arg2 ) : string
format string The format of the string.
arg0 object The argument to format with.
arg1 object The argument to format with.
arg2 object The argument to format with.
return string