ToString() public method

Returns a string representation of this LdapEntry
public ToString ( ) : System.String
return System.String
 /// <summary> Return a String representation of this object.
 ///
 /// </summary>
 /// <returns> a String representing this object.
 /// </returns>
 public override System.String ToString()
 {
     System.String str;
     if (entry == null)
     {
         str = base.ToString();
     }
     else
     {
         str = entry.ToString();
     }
     return(str);
 }
        /// <summary>
        ///     Return a String representation of this object.
        /// </summary>
        /// <returns>
        ///     a String representing this object.
        /// </returns>
        public override string ToString()
        {
            string str;

            if (_entry == null)
            {
                str = base.ToString();
            }
            else
            {
                str = _entry.ToString();
            }

            return(str);
        }