inidbi2.inidbi2.Write C# (CSharp) Method

Write() public method

public Write ( string File, string Section, string Key, string Value ) : string
File string
Section string
Key string
Value string
return string
        public string Write(string File, string Section, string Key, string Value)
        {
            if(WritePrivateProfileString(Section, Key, Value, File) == 0) {return "false";}else{return "true";}
        }