Batman.MVC.Assets.AssetManager.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Returns a System.String that represents this instance.
public ToString ( ) : string
리턴 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();
        }