Files
Toolkit2/Toolkit.Foundation/Notify.cs
T
2024-06-09 22:41:58 +01:00

8 lines
247 B
C#

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