C# Класс Encog.Util.DirectoryUtil

Directory utilities.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

CopyFile() публичный статический Метод

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.
Результат void

ReadStream() публичный статический Метод

Read the entire contents of a stream into a string.
public static ReadStream ( Stream istream ) : String
istream Stream The input stream to read from.
Результат String

ReadTextFile() публичный статический Метод

Read the entire contents of a stream into a string.
public static ReadTextFile ( String filename ) : String
filename String The input stream to read from.
Результат String