C# 클래스 Encog.Util.StringUtil

Simple class for string utilities.
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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.

메소드 상세

EqualsIgnoreCase() 공개 정적인 메소드

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

FromBytes() 공개 정적인 메소드

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.
리턴 String