12 lines
246 B
C#
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);
|
|
}
|
|
}
|
|
} |