Batman.MVC.Assets.AssetManager.ToString C# (CSharp) Méthode

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat string
        public override string ToString()
        {
            return new StringBuilder().AppendLine()
                                      .AppendLineFormat("Filters: {0}", Filters.ToString(x => x.Name))
                                      .AppendLineFormat("Translators: {0}", Translators.ToString(x => x.Name))
                                      .AppendFormat("Content Filters: {0}", ContentFilters.ToString(x => x.Name))
                                      .ToString();
        }