BS_EventArgs

Add a class to the MVP folder called "BS_EventArgs".
Make the following changes to this class.

public class BS_EventArgs<T> : System.EventArgs 
{
    public T RequestedValue { get; set; }

    public BS_EventArgs(T value)
    {
        this.RequestedValue = value;
    }
}

© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext