C# 클래스 GSF.Historian.Exporters.FileHelper

A class with helper methods for file related operations.
파일 보기 프로젝트 열기: GridProtectionAlliance/gsf

공개 메소드들

메소드 설명
WriteToFile ( string files, string text ) : void

Writes the specified text to the specified files.

WriteToFile ( string files, string format, DataSet data ) : void

Writes data to the specified files in the specified format.

메소드 상세

WriteToFile() 공개 정적인 메소드

Writes the specified text to the specified files.
public static WriteToFile ( string files, string text ) : void
files string Comma or semi-colon delimitted list of file names to which the is to be written.
text string Text to be written to the .
리턴 void

WriteToFile() 공개 정적인 메소드

Writes data to the specified files in the specified format.
public static WriteToFile ( string files, string format, DataSet data ) : void
files string Comma or semi-colon delimitted list of file names to which is to be written.
format string Format (CSV or XML) in which is to be written to the .
data System.Data.DataSet containing the data to be written to the .
리턴 void