Example #1
0
 public bool Inspect <T, TData>(LambdaAction <T, TData> action)
     where T : StateMachine <T>
     where TData : class
 {
     Append("Action<" + typeof(T).Name + "," + typeof(TData).Name + ">");
     return(true);
 }
Example #2
0
 public bool Inspect <T>(LambdaAction <T> action)
     where T : StateMachine <T>
 {
     Append("Action<" + typeof(T).Name + ">");
     return(true);
 }