CS2GSI/CS2GSI/CS2EventArgs.cs
2024-01-15 23:52:30 +01:00

21 lines
370 B
C#

namespace CS2GSI;
public class CS2EventArgs : EventArgs
{
public object? Value;
public CS2EventArgs(object? value = null)
{
this.Value = value;
}
public T? ValueAsOrDefault<T>()
{
return Value is T val ? val : default;
}
public override string ToString()
{
return Value?.ToString() ?? "NoArgs";
}
}