Files
Toolkit2/Toolkit.Foundation/Notify.cs
T
TheXamlGuy c0c1a82846 Codemaid
2024-05-24 08:21:50 +01:00

10 lines
254 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());
}