Link to home
Start Free TrialLog in
Avatar of Frosty555
Frosty555Flag for Canada

asked on

Shared (static) events in VB.NET

What are shared events in VB.NET? How do I raise them and handle them? What are they useful for?

E.g. if I declare a class like this:

Public Class ProgressHandler
    Public Shared Event Progress(ByVal title As String, ByVal message As String, ByVal value As Integer, ByVal max As Integer)
End Class

The compiler doesn't complain but I don't know what to do with it from there.
ASKER CERTIFIED SOLUTION
Avatar of AUmidh
AUmidh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial