Init Scripts in new repo

This commit is contained in:
2026-04-04 13:18:04 -04:00
commit d988008613
26 changed files with 1497 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using System.Linq.Expressions;
namespace SjkScripts.Helpers
{
public static class ActivatorCache<T> where T : new()
{
public static readonly Func<T> Create = Expression.Lambda<Func<T>>(Expression.New(typeof(T))).Compile();
}
}