966bba02bb
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
10 lines
213 B
C#
10 lines
213 B
C#
// Compiler options: -target:library
|
|
|
|
namespace SeparateAssembly
|
|
{
|
|
public interface IGenericAction<T1, T2>
|
|
{
|
|
void AddAction(IGenericAction<T1, T2> action);
|
|
void AddAction(IGenericAction<T2, T1> action);
|
|
}
|
|
} |