NSoft.NFramework.Nini.Ini.IniWriter.GetKeyValue C# (CSharp) Method

GetKeyValue() private method

Returns the value of a key.
private GetKeyValue ( string text ) : string
text string
return string
        private string GetKeyValue(string text) {
            string result;

            if(useValueQuotes) {
                result = MassageValue('"' + text + '"');
            }
            else {
                result = MassageValue(text);
            }

            return result;
        }