Help to Convert Code from C# to VB.Net

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
<pre style="line-height:normal; word-wrap:break-word; white-space:pre-wrap Dear friends, I have to convert the code # in Vb.Net. Could you help me? Thanks a lot. Declaration: private EventHandler disposed = null; .... public event EventHandler Disposed
{
add
{
this.disposed += value;
}
remove
{
this.disposed -= value;
}
} [/code]

View the full article
 
Back
Top