Bosphorus.Dao.Client.Model.AbstractMethodExecutionItemList.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            Type type = this.GetType();
            string fullName = type.FullName;
            string assemblyName = type.Assembly.GetName().Name;
            string remainder = fullName.Replace(assemblyName + "." , string.Empty);

            return remainder;
        }
    }
AbstractMethodExecutionItemList