I had some UserControls in VB6. I want to convert to C#. What are the equivalent events in C#?
Private Sub UserControl_Initialize()
'...
End Sub
Private Sub UserControl_InitProperties()
'...
End Sub
Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
'...
End Sub
Private Sub UserControl_WriteProperties(PropBag As PropertyBag)
'...
End Sub