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

MassageValue() private method

Fixes the incoming value to prevent illegal characters from hurting the integrity of the INI file.
private MassageValue ( string text ) : string
text string
return string
        private string MassageValue(string text) {
            return text.Replace("\n", "");
        }
    }