C# 클래스 Encog.Util.CSV.CSVFormat

파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
CSVFormat ( ) : System

Default constructor for reflection.

CSVFormat ( char decimalChar, char separatorChar ) : System

Create a CSV format for the specified decimal char and separator char.

Format ( double d, int digits ) : String

Format the specified number into a string.

Parse ( String str ) : double

Parse the specified string into a number.

메소드 상세

CSVFormat() 공개 메소드

Default constructor for reflection.
public CSVFormat ( ) : System
리턴 System

CSVFormat() 공개 메소드

Create a CSV format for the specified decimal char and separator char.
public CSVFormat ( char decimalChar, char separatorChar ) : System
decimalChar char The character for a decimal point or comma.
separatorChar char The separator char for a number list, likely comma or semicolon.
리턴 System

Format() 공개 메소드

Format the specified number into a string.
public Format ( double d, int digits ) : String
d double The number to parse.
digits int The number of fractional digits.
리턴 String

Parse() 공개 메소드

Parse the specified string into a number.
public Parse ( String str ) : double
str String The string to parse.
리턴 double