C# 클래스 INI.INIFile

Create a New INI file to store or load data
파일 보기 프로젝트 열기: henryxrl/SimpleEpub2 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
path String

공개 메소드들

메소드 설명
INIFile ( String INIPath ) : System

INIFile Constructor.

INIReadValue ( String Section, String Key ) : String

Read Data Value From the INI File

INIWriteValue ( String Section, String Key, String Value ) : void

Write Data to the INI File

비공개 메소드들

메소드 설명
GetPrivateProfileString ( String section, String key, String def, StringBuilder retVal, Int32 size, String filePath ) : Int32
WritePrivateProfileString ( String section, String key, String val, String filePath ) : Int32

메소드 상세

INIFile() 공개 메소드

INIFile Constructor.
public INIFile ( String INIPath ) : System
INIPath String
리턴 System

INIReadValue() 공개 메소드

Read Data Value From the INI File
public INIReadValue ( String Section, String Key ) : String
Section String
Key String
리턴 String

INIWriteValue() 공개 메소드

Write Data to the INI File
public INIWriteValue ( String Section, String Key, String Value ) : void
Section String
Key String
Value String
리턴 void

프로퍼티 상세

path 공개적으로 프로퍼티

public String path
리턴 String