System.ComponentModel.MarshalByValueComponent.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : String
Résultat String
        public override String ToString() {
            ISite s = site;

            if (s != null)
                return s.Name + " [" + GetType().FullName + "]";
            else
                return GetType().FullName;
        }
    }