NSoft.NFramework.Nini.Ini.IniWriter.MassageValue C# (CSharp) Метод

MassageValue() приватный Метод

Fixes the incoming value to prevent illegal characters from hurting the integrity of the INI file.
private MassageValue ( string text ) : string
text string
Результат string
        private string MassageValue(string text) {
            return text.Replace("\n", "");
        }
    }