AspectGetterDelegate.cs 333 B

1234567
  1. #nullable disable
  2. namespace Terminal.Gui.Views;
  3. /// <summary>Delegates of this type are used to fetch string representations of user's model objects</summary>
  4. /// <param name="toRender">The object that is being rendered</param>
  5. /// <returns></returns>
  6. public delegate string AspectGetterDelegate<T> (T toRender) where T : class;