hoTools.Find.FindAndReplaceItem.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            string isUpdated = "";
            if (_isUpdated) isUpdated = "*";

            string stereotype = "";
            if (_Stereotype != "") stereotype = "<<" +_Stereotype + ">>"; 
            return String.Format("{4} '{0}:{1}'{2} {3} changes in item found ", getSubType(), _Name, stereotype,  _countChanges, isUpdated);

        }
        #endregion