🍬
Gummi
  • Welcome to Gummi
  • Installation
  • Repo
  • API Documentation
    • Core
      • Attributes
        • DisableIf(string Target)
        • DisableIf(string Target, object Benchmark)
        • EnableIf(string Target)
        • EnableIf(string Target, object Benchmark)
        • HideIf(string Target)
        • HideIf(string Target, object Benchmark)
        • ShowIfstring Target)
        • ShowIf(string Target, object Benchmark)
        • SOExposed
        • VisibleBaseAttribute
        • ReadOnly
      • Extensions
        • GenericExtensions
        • IntExtensions
        • ListExtensions
    • MVC
      • RootController
      • SubController
      • SubController<enum, uiView>
      • UIView
    • Singletons
      • Singleton
      • Persistent Singleton
      • Lazy Singleton
      • Persistent Lazy Singleton
    • Utility
      • MDDocumentation
      • Optional
Powered by GitBook
On this page
  • Summary
  • Methods
  1. API Documentation
  2. Core
  3. Extensions

ListExtensions

PreviousIntExtensionsNextMVC

Last updated 3 years ago

namespace:

Summary

Extension methods for the IList type.

List<string> ls = new List<string>() {"1", "2", "3"};
print(ls.PrettyPrint())

Methods

public static string PrettyPrint(this IList list): creates a pretty tostring of the list. An example may be seen below.

01: hello
02: world
03: :)

Gummi