mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
13 lines
178 B
C#
13 lines
178 B
C#
using System;
|
|
|
|
namespace AppleBatch_June.ExecuteTasks
|
|
{
|
|
public class TaskSingletonObject
|
|
{
|
|
public static T GetTask<T>()
|
|
{
|
|
return Activator.CreateInstance<T>();
|
|
}
|
|
}
|
|
}
|