Zetetic.Ldap.LdifCsvPivot.Write C# (CSharp) Method

Write() protected method

protected Write ( string val ) : void
val string
return void
        protected void Write(string val) 
        {
            if (string.IsNullOrEmpty(val))
            {
                // Do nothing
            }
            else if (val.Contains(this.Separator))
            {
                Output.Write("\"" + val + "\"");
            }
            else
            {
                Output.Write(val);
            }
        }