2
0

AspectGetterDelegate.cs 330 B

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