Files
hangfire-ravendb/samples/ConsoleSample/GenericServices.cs
T
2015-10-16 16:07:20 -05:00

12 lines
246 B
C#

using System;
namespace ConsoleSample
{
public class GenericServices<TType>
{
public void Method<TMethod>(TType arg1, TMethod arg2)
{
Console.WriteLine("Arg1: {0}, Arg2: {1}", arg1, arg2);
}
}
}