Files
Toolkit2/Toolkit.Foundation/Notify.cs
T
TheXamlGuy 1b60711ec4 WIP
2024-05-18 20:40:12 +01:00

11 lines
255 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());
}