Files
Toolkit2/Toolkit.Foundation/Notify.cs
T
2024-11-29 21:20:14 +00:00

8 lines
238 B
C#

namespace Toolkit.Foundation;
public class Notify
{
public static NotifyEventArgs<TValue> As<TValue>(TValue value) => new(value);
public static NotifyEventArgs<TValue> As<TValue>() where TValue : new() => new(new TValue());
}