I am porting an application from VB.NET to C++.NET
In the VB.NET app, there is something like
Public Class A
Public Event something()
Public Sub subr()
...
RaiseEvent something()
End Sub
End Class
Public Class B
Private Sub somethingHandle r() Handles A.something
....
End Sub
End Class
How do I translate this to C++.NET? I am rather new to .NET and I would appreciate a step by step explanation. Thank you very much.
In the VB.NET app, there is something like
Public Class A
Public Event something()
Public Sub subr()
...
RaiseEvent something()
End Sub
End Class
Public Class B
Private Sub somethingHandle r() Handles A.something
....
End Sub
End Class
How do I translate this to C++.NET? I am rather new to .NET and I would appreciate a step by step explanation. Thank you very much.
Comment