System.ComponentModel.MarshalByValueComponent.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : String
리턴 String
        public override String ToString() {
            ISite s = site;

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