C# Class Recognos.Core.Format

Helper class to format strings with InvariantCulture
Afficher le fichier Open project: Recognos/Recognos.Core

Méthodes publiques

Méthode 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 méthode

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

Invariant() public static méthode

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.
Résultat string

Invariant() public static méthode

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.
Résultat string

Invariant() public static méthode

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.
Résultat string