Zetetic.Ldap.LdifCsvPivot.Write C# (CSharp) 메소드

Write() 보호된 메소드

protected Write ( string val ) : void
val string
리턴 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);
            }
        }