AspectGetterDelegate.cs 309 B

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