C# Class FT.Search.Helpers.StringHelper

Mostra file Open project: friism/folketsting

Public Methods

Method Description
EmptyToNull ( string a ) : string

If a is empty, returns null

IfNullOrEmpty ( string a, string b ) : string

Like null coalescing operator (??) but including empty strings

TryParse ( string u ) : int
TryParse ( string u, int defaultValue ) : int

Method Details

EmptyToNull() public static method

If a is empty, returns null
public static EmptyToNull ( string a ) : string
a string
return string

IfNullOrEmpty() public static method

Like null coalescing operator (??) but including empty strings
public static IfNullOrEmpty ( string a, string b ) : string
a string
b string
return string

TryParse() public static method

public static TryParse ( string u ) : int
u string
return int

TryParse() public static method

public static TryParse ( string u, int defaultValue ) : int
u string
defaultValue int
return int