C# 클래스 Encog.Persist.DirectoryEntry

The idea of the Encog persisted collection is that the entire file might be quite long and should not be read into memory in its entirity. Directory entry classes allow you to list the contents of a file without loading the entire file.
상속: IComparable
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
CompareTo ( Object other ) : int

Compare the two objects.

DirectoryEntry ( IEncogPersistedObject obj ) : System

Construct a directory entry for the specified object.

DirectoryEntry ( String type, String name, String description ) : System

Construct a directory entry from strings.

Equals ( Object other ) : bool

Returns true if the two objects are equal.

GetHashCode ( ) : int

Create a simple hash code for this object.

ToString ( ) : String

Convert the object to a string.

메소드 상세

CompareTo() 공개 메소드

Compare the two objects.
public CompareTo ( Object other ) : int
other Object The other object.
리턴 int

DirectoryEntry() 공개 메소드

Construct a directory entry for the specified object.
public DirectoryEntry ( IEncogPersistedObject obj ) : System
obj IEncogPersistedObject The Encog object.
리턴 System

DirectoryEntry() 공개 메소드

Construct a directory entry from strings.
public DirectoryEntry ( String type, String name, String description ) : System
type String The type of object.
name String The name of this object.
description String The description for this object.
리턴 System

Equals() 공개 메소드

Returns true if the two objects are equal.
public Equals ( Object other ) : bool
other Object The other object.
리턴 bool

GetHashCode() 공개 메소드

Create a simple hash code for this object.
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Convert the object to a string.
public ToString ( ) : String
리턴 String