Novell.Directory.Ldap.LdapSearchResult.ToString C# (CSharp) Method

ToString() public method

Return a String representation of this object.
public ToString ( ) : System.String
return System.String
        public override System.String ToString()
        {
            System.String str;
            if (entry == null)
            {
                str = base.ToString();
            }
            else
            {
                str = entry.ToString();
            }
            return str;
        }