C# Class BridgeStack.StringHelpers

String extensions. Mostly syntactic sugar.
Show file Open project: bevacqua/BridgeStack

Public Methods

Method Description
FormatWith ( this text ) : string

Replaces the format item in a specified string with the string representations of a corresponding object in a specified array.

NullOrEmpty ( this text ) : bool

Indicates whether the specified string is null or a System.String.Empty string.

Method Details

FormatWith() public static method

Replaces the format item in a specified string with the string representations of a corresponding object in a specified array.
public static FormatWith ( this text ) : string
text this A composite format string.
return string

NullOrEmpty() public static method

Indicates whether the specified string is null or a System.String.Empty string.
public static NullOrEmpty ( this text ) : bool
text this The string to test.
return bool