inidbi2.inidbi2.DeleteKey C# (CSharp) 메소드

DeleteKey() 공개 메소드

public DeleteKey ( string File, string Section, string key ) : string
File string
Section string
key string
리턴 string
        public string DeleteKey(string File, string Section, string key)
        {
            if(WritePrivateProfileStruct(Section, key, null, 0, File) == 0) { return "false"; } else { return "true"; }
        }