Files
SjkScripts/Helpers/ActivatorCache.cs

9 lines
247 B
C#
Raw Permalink Normal View History

2026-04-04 13:18:04 -04:00
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();
}
}