C# Class Encog.Util.DirectoryUtil

Directory utilities.
ファイルを表示 Open project: encog/encog-silverlight-core

Public Methods

Method Description
CopyFile ( String source, String target ) : void

Copy the specified file.

ReadStream ( Stream istream ) : String

Read the entire contents of a stream into a string.

ReadTextFile ( String filename ) : String

Read the entire contents of a stream into a string.

Method Details

CopyFile() public static method

Copy the specified file.
public static CopyFile ( String source, String target ) : void
source String The file to copy.
target String The target of the copy.
return void

ReadStream() public static method

Read the entire contents of a stream into a string.
public static ReadStream ( Stream istream ) : String
istream Stream The input stream to read from.
return String

ReadTextFile() public static method

Read the entire contents of a stream into a string.
public static ReadTextFile ( String filename ) : String
filename String The input stream to read from.
return String