/
vshmidt
/
Hangfire
Обзор
Документация
Войти
/
vshmidt
/
Hangfire
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/ConsoleSample/GenericServices.cs
12 строк
241 B
Sergey Odinokov
Working with ReSharper hints and suggestions
07 апр 2016, 20:42
07 апр 2016, 20:42
fb1f5d7
Код
Авторство
О чём код?
using System; namespace ConsoleSample { public class GenericServices<TType> { public void Method<TMethod>(TType arg1, TMethod arg2) { Console.WriteLine($"Arg1: {arg1}, Arg2: {arg2}"); } } }