C# Class Encog.Util.StringUtil

Simple class for string utilities.
ファイルを表示 Open project: encog/encog-silverlight-core

Public Methods

Method Description
EqualsIgnoreCase ( String a, String b ) : System.Boolean

Compare two strings, ignore case.

FromBytes ( byte b ) : String

Simple utility to take an array of ASCII bytes and convert to a String. Works with Silverlight as well.

Method Details

EqualsIgnoreCase() public static method

Compare two strings, ignore case.
public static EqualsIgnoreCase ( String a, String b ) : System.Boolean
a String The first string.
b String The second string.
return System.Boolean

FromBytes() public static method

Simple utility to take an array of ASCII bytes and convert to a String. Works with Silverlight as well.
public static FromBytes ( byte b ) : String
b byte The byte array.
return String