Interface IAction<T>

  • Type Parameters:
    T - The type of the parameter of the method that this delegate encapsulates.

    public interface IAction<T>
    The Interface IAction.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void action​(T obj)
      Encapsulates a method that takes a single parameter and does not return a value.
    • Method Detail

      • action

        void action​(T obj)
        Encapsulates a method that takes a single parameter and does not return a value.
        Parameters:
        obj - The parameter of the method that this delegate encapsulates.